Search results

  1. A

    Internal transfer with DID not working

    I would take a packet capture to see what's happening or check in cli
  2. A

    Internal transfer with DID not working

    Does it show up for the first person picking up? what do you mean it's not showing up, nothing shows up on the phone?
  3. A

    Dialplan processing for outbound routes

    I was just wondering if I"m missing something. btw, what would be the best way to check a user's outbound regex from a Lua script, through the database or is there any simpler way?
  4. A

    Dialplan processing for outbound routes

    Hi, where in the dialplan does the regex for outbound routes being evaluated and where in the dialplan is it getting routed to the outbound route in the cli, I see it starts off by processing the regular dialplan and then it moves to the outbound dialplan but I don't see in the dialplan where...
  5. A

    custom dialplan for newly created domains

    There's no better solution? in which context will it be?
  6. A

    custom dialplan for newly created domains

    but if I make it global and I enable or disable it, it will apply to all domains
  7. A

    custom dialplan for newly created domains

    Maybe I didn't explain my question well enough. My question is where is located the default dialplan for newly created domains I would like to customize it
  8. A

    custom dialplan for newly created domains

    Hi, I would like to create all my new domains with my customize dialplans and features how can this be done? Thanks
  9. A

    SOLVED Outbound Calls Won't Parse Outbound Rules, code:408

    I"m not sure, I think user_exists=false it looks like your outbound route or something else is misconfigured
  10. A

    SOLVED Outbound Calls Won't Parse Outbound Rules, code:408

    it's not getting routed to your outbound route
  11. A

    deleting voicemail greetings issue

    HI, I found an interesting problem. After I delete a greeting from the GUI, the voicemail has no greeting and the voicemail goes straight to the instructions. I can see FreeSWITCH still tries to access that greeting as I see in the cli Error Opening...
  12. A

    fusionpbx restore backup to new server

    I solved it by manually removing the database roles: DROP ROLE fusionpbx; DROP ROLE freeswitch; and than recreating them with the restored database password: sudo -u postgres psql -c "CREATE ROLE fusionpbx WITH SUPERUSER LOGIN PASSWORD 'restored server password';" sudo -u postgres psql -c...
  13. A

    fusionpbx restore backup to new server

    I think I"m getting this error because new server runs postgres 11.1 and restored server runs version 10.5 and this what's causing all the headaches. any solution?
  14. A

    fusionpbx restore backup to new server

    when executing pg_restore -Fc --host=127.0.0.1 --dbname=fusionpbx --username=fusionpbx /var/backups/fusionpbx/postgresql/fusionpbx_pgsql_$now.sql I"m getting the following output pg_restore: [archiver (db)] Error while PROCESSING TOC: pg_restore: [archiver (db)] Error from TOC entry 3; 2615...
  15. A

    fusionpbx restore backup to new server

    thanks, I"ll give it a try
  16. A

    fusionpbx restore backup to new server

    I didn't manually too, and I had the same issue. what are the steps you use to restore?
  17. A

    fusionpbx restore backup to new server

    I followed the script mentioned above and one of the lines is: rsync -avz -e 'ssh -p 22' root@$ssh_server:/etc/fusionpbx /etc so it copies automatically the config.php file, no?
  18. A

    fusionpbx restore backup to new server

    password from restored server
  19. A

    fusionpbx restore backup to new server

    both files are identical
  20. A

    fusionpbx restore backup to new server

    when I connect to the database I get: postgres=# \connect fusionpbx You are now connected to database "fusionpbx" as user "postgres". and when I try to access the GUI I get: error: SQLSTATE[08006] [7] FATAL: password authentication failed for user "fusionpbx" FATAL: password authentication...