Search results

  1. Q

    Need way to filter out double DTMF signals

    The documentation at https://docs.fusionpbx.com/en/latest/dialplan/dialplan_application.html Shows a setting in Dialplan Applications: deduplicate_dtmf "Prevent duplicate inband + 2833 dtmf" I cannot find this in the current Freeswitch setting. Is it possible to replicate or install this setting?
  2. Q

    Need way to filter out double DTMF signals

    This is looking like a problem of the SIP provider sending two DTMF signals per key-press for the problem number. It would be fixable on the PBX side if there was a debounce setting which would ignore a button presses too close together. For example ignore a DTMF that is less than 50 ms after...
  3. Q

    Need way to filter out double DTMF signals

    New install with updates on Debian 13. It was working OK with one number. Direct Dial is disabled, instead I put the extension number as an option. The Destination Action sends it to the IVR. The user enters the extension number. I want to replace the number with a different number. I changed...
  4. Q

    Won't hang up after multiple incorrect extention entries

    The work-around for this is to disable Direct Dial and use the actual extension numbers in the dial options.
  5. Q

    Group Manager permissions will not save

    I just updated to get the latest changes cd /var/www/fusionpbx sudo -u www-data git pull php core/upgrade/upgrade.php I removed admin from group user, leaving only superadmin. Gemini theorized I get switched to user after login in and that is why I don't see the delete check-boxes in the CDR...
  6. Q

    Won't hang up after multiple incorrect extention entries

    I did now, but No change. How can I debug this?
  7. Q

    Won't hang up after multiple incorrect extention entries

    I am setting up the IVR menu for direct dial. One extension retry is allowed and then I want it to hangup. But after multiple wrong extension number entries it replays the main long message. Greet Long > Recording > please_enter_the_extension Timeout 3000 Exit Action Hangup Direct Dial Enabled...
  8. Q

    Group Manager permissions will not save

    I have version 5.5.11 I updated FusionPBX cd /var/www/fusionpbx sudo -u www-data git pull php core/upgrade/upgrade.phps I edited /etc/php/8.2/fpm/php.ini and verified post_max_size, upload_max_filesize, max_input_vars were written. I ran all Advanced > Upgrade options I systemctl restart...
  9. Q

    Group Manager permissions will not save

    I installed FS PBX on a 4 GB t3.medium instance to compare. 4 GB is the minimum memory to install, but after installation it looks like I could save the AMI image and install it on a 2 GB t3.small instance. Here is the memory use comparison while logged into their GUIs. FS PBX on 4 GB...
  10. Q

    Group Manager permissions will not save

    Do you know if anyone has run FS PBX on Amazon AWS t3.micro instance (1GB 2 CPU)? I am currently running FusionPBX on that.
  11. Q

    Group Manager permissions will not save

    I cannot set or clear any permission in Group Manager heading XML CDR. It is the same for anything under anything about Voice Mail. Saving resets it to how it was. I can successfully change permissions for Access Controls and other heading items at the top of the list. Everything under...
  12. Q

    Trying out latest FusionPBX - Fatal error: Uncaught TypeError: fwrite():

    I found the problem. In switch.php line 293, fopen fails because the directory is read only to FusionPBX. The file permissions are OK but Systemd security is interfering. I have reported this to support to get an official solution.
  13. Q

    Trying out latest FusionPBX - Fatal error: Uncaught TypeError: fwrite():

    Latest install of FusionPBX with FreeSWITCH v1.11.0 on new AWS EC2 instance of Debian 13. If I try to save anything in Advanced > Variables it gives: Fatal error: Uncaught TypeError: fwrite(): Argument #1 ($stream) must be of type resource, bool given in...
  14. Q

    404 not found, what exactly not found?

    My system was working then I rebooted it. Now calling in to an extension it immediately goes to callcentric voicemail. The fs_cli log has this line: Dialplan: sofia/external/CALLER_NUMBER@sip.callcentric.net Action log(WARNING [inbound routes] 404 not found ${sip_network_ip} destination_number...
  15. Q

    Cannot get incoming call to route through incoming [SOLVED]

    I used ChatGPT to install FusionPBX configured with a secure public IP address. At one point it told me to edit the postgres database to update the domain name. This made the FusionPBX GUI and the database out of sync, and is the source of the original problem. ChatGPT then tried to solve it by...
  16. Q

    Cannot get incoming call to route through incoming [SOLVED]

    All incoming calls are getting routed directly to the first extension. Incoming routes are bypassed. In Destinations -> Destination I have tried the Callcentric trunk number, the DID number (11 digits). Incoming route is bypassed. Even if I put a nonsense number in Destinations -> Destination...
  17. Q

    Callcentric multiple extensions default to first extension

    I have 2 Callcentric DID numbers, associated with two extensions. With Callcentric there is the primary extension 100 and a secondary extensions. On FusionPBX I have setup the two extensions and the two destinations (inbound). When I call the second DID number it should go to the second...
  18. Q

    Two gateways should be independent but are not.

    Solved. Extensions must be set correctly in both Extensions and Destinations. Now it would ring but not connect. in fs_cli, the command "sofia status gateway name_of_gateway" gave "Invalid Gateway!" With the help of ChatGPT. From the command line do: fs_cli -x "sofia status gateway" Copy the...
  19. Q

    Two gateways should be independent but are not.

    I set up two gateways for two sip providers. One sip provider is UDP and the other is TLS/SRTP. The TLS/SRTP gateway worked first. For the UDP gateway, I copied the external sip profile set up for TLS/SRTP, and I disabled the rtp-secure-media and media-encryption in it. I assigned each gateway...