Search results

  1. datafanatics

    SOLVED Fax Failing - Inbound & Outbound

    Did you check folder permissions?
  2. datafanatics

    CDR Archive - Settings applied, button not visible?

    If I do this, it fails at with an error of: error: SQLSTATE[08006] [7] connection to server on socket "/var/run/postgresql/.s.PGSQL.5432" failed: FATAL: Peer authentication failed for user "password=" Line 520: $this->db = new PDO("pgsql:host=$this->host port=$this->port...
  3. datafanatics

    CDR Archive - Settings applied, button not visible?

    I created a ticket on it since I'm not the only one.
  4. datafanatics

    CDR Archive - Settings applied, button not visible?

    The odd part is my limit is also set in default settings to what I presume is the default of 800 and database.php isn't reading that properly either. Head scratcher for sure.
  5. datafanatics

    CDR Archive - Settings applied, button not visible?

    Nice find. While it would be nice to have the button, I know what file offers up the archive info, but it in itself throws errors as though it's not reading the set variables. I'm just not sure what needs to be done to resolve that part. Are you able to access xml_cdr_archive.php without the...
  6. datafanatics

    CDR Archive - Settings applied, button not visible?

    No, issue remains. I believe that it's a bug.
  7. datafanatics

    Problem registering device from a new IP

    I’m mobile right now but maybe try ‘systemctl disable —now fail2ban’ I’d discourage doing this long term though. You should fix the issue, not bandaid it by turning off security. However turning it off to test should be fine for a short period of time.
  8. datafanatics

    Email and Fax queue not working, error in database.php (latest)

    I'm running the latest /resources/classes/database.php from 9/30 here: https://github.com/fusionpbx/fusionpbx/commit/aeec91fae85df0eb7e2aeb816c44fc3205f25adc Now when I run email_queue.php or fax_queue.php it's throwing a syntax error: PHP Parse error: syntax error, unexpected ':', expecting...
  9. datafanatics

    Problem registering device from a new IP

    If the same IP can no longer connect to the web interface after attempting to register a SIP phone, then you are for sure being firewalled off, likely by fail2ban. Running 'fail2ban-client banned' should show you any banned IP addresses. If that shows none, check to see if firewalld blocked it...
  10. datafanatics

    Can't upload recording file

    I'm having the same issue. Also for me, previous mp3 file uploads will not play when specified. I ended up using Audacity to convert the mp3 files into wav ulaw files. If you wanted to do that as a workaround until someone better with FPBX replies, open the mp3 in audacity, select the tracks...
  11. datafanatics

    CDR Archive - Settings applied, button not visible?

    So I'm attempting to offload my CDR records that are over 90 days to an archive postgres server. I've set the required settings, but the archive button isn't displayed on the CDR screen as the instructions said it would be. I did hit the reload button on the Default Settings screen. I've also...
  12. datafanatics

    Email queue building up

    You are amazing! I searched the docs high and low and somehow missed this. Thank you!
  13. datafanatics

    Email queue building up

    So I recently built a fresh FusionPBX server and now when voicemail to email takes place, some or all of the emails are getting stuck in the email queue. There is no way in the dashboard to force these through, so I'm not really sure how to handle this. There is nothing in the email logs...
  14. datafanatics

    Neighbor Calling (Dynamic CID)

    Ok latest regex, doesn't strip the area code: ^\+?1?(601\d{7})$
  15. datafanatics

    Neighbor Calling (Dynamic CID)

    Ok I found a solution, turns out the regex I was using, even though I tested it for matches, wasn't working. Here is what I ended up with: ^\+?1?601(\d{7})$ It does strip the 1601 from the front (not a regex expert so not sure why) so I had to add the 1601 to the bridge area as a prefix.
  16. datafanatics

    Neighbor Calling (Dynamic CID)

    So I have the need to have a different CID number push if we own a DID in the area code that is being called. Say I own 3 DID: - 601519XXXX (Main number) - 662312XXXX - 769123XXXX I've tried setting up a higher priority outbound route rule and setting the regex to: ^1662(\d{7})$ then changing...
  17. datafanatics

    Keep extension busy on call forward?

    Is that the only way? Only way I can find to permanently disable call waiting on a cell is to contact the cell provider.
  18. datafanatics

    Keep extension busy on call forward?

    I've created 3 new extensions and set them all to call forward to different cell phones. Then created a Ring group with those 3 extensions. I expected the system to keep those extensions as 'busy' as long as a call forward was in place from that extension, but it doesn't seem to do that...
  19. datafanatics

    Dashboard logging out on any link click?

    You nailed it. Funny enough I was typing that out as you posted. Thanks, you were on the money!
  20. datafanatics

    Dashboard logging out on any link click?

    Ok, I've fixed my issue. Turns out that a yum update had updated php-fpm from the remi repository and in doing so reset permissions on the folders in /var/lib/php to owner of root:apache instead of freeswitch:daemon, changing permissions and restarting php-fpm resolved the issue. For...