Search results

  1. M

    Bug deleting entries from dialplan FPBX v5.2.4

    FusionPBX 5.3 is the current FusionPBX release. I just confirmed that this is not a problem on 5.3. This bug was fixed several months ago. The dialplan XML is deleted when the dialplan detail is deleted. I remember fixing this bug it was several months ago. It's a good thing 5.3 was released...
  2. M

    Bug deleting entries from dialplan FPBX v5.2.4

    If you press save again it will read the current dialplan settings and remove the line from the XML.
  3. M

    SOLVED IVR an time condition

    Hour of day doesn't work intuitively. When it's set to 9-4 it means all of 9 up to all of 4 until it's not 4 anymore(so it means 9-5). This is how FreeSWITCH looks at the hours.
  4. M

    Voicemail in 5.3 only shows the length and size on the first line.

    Sorry, this one is a bug I'll get it fixed soon.
  5. M

    FusionPBX IP Authentication

    You need to add your VoIP provider IP addresses to the Access Control list. If you are running a new version of FusionPBX then this would be the providers access control list. For those using an old outdated version, it is called domains access control list.
  6. M

    SOLVED IVR an time condition

    Ensure you set the time_zone variable in default settings to the correct time zone. You might want to send your call to the time condition extension first. Then send it to the open IVR and the closed IVR Menus or other desired destination.
  7. M

    Block Branch 5.3 - Master

    If you run this command It will tell you what branch you are on. If it indicates you are on 5.3, you are already on the right branch. If it says 5.2 or master then run the following.
  8. M

    Block Branch 5.3 - Master

    The FusionPBX official install script puts you on the 5.3 release branch. - https://github.com/fusionpbx/fusionpbx-install.sh/blob/master/debian/resources/config.sh If you update the Source Code from the web interface in Advanced -> Upgrade you will only get bug and security fixes from the...
  9. M

    Using default setting variables

    You want to use default settings in category: provision if you have a setting as yealink_480x272_wallpaper then in the provisioning template if you look around for a variable you will see the syntax looks like this. {$yealink_480x272_wallpaper} The template engine uses PHP Smarty so it requires...
  10. M

    Crd logs and recordings not showing in portal

    I'm interpreting the problem as the Call Detail Records are not loading into the database. Call Recording depends on the same table in Call Detail Records. So this would affect both features. If this is an upgrade go into your /etc/freeswitch/autoload_configs/xml_cdr.conf.xml. Update it to...
  11. M

    Variables are not being saved

    Advanced -> Variables is save to vars.xml file in /etc/freeswitch
  12. M

    Replicating the switch database between two nodes

    It seems alright mostly but make sure to keep PostgreSQL running for continued replication. And the config files don't change much so there the benefit on changing then depends on how much you change the configs. By default they aren't changed much. Most of FusionPBX is dynamically sending...
  13. M

    Fresh install - FreeSwitch not starting correctly

    SQLITE "busy" messages this is how SQLite works by default. When there is a write it locks the file writes the changes and unlocks the file. If something else tries to write to it while it is locked FreeSWITCH will log SQLite "busy" and say 299 this means it was busy one time. From there it...
  14. M

    Replicating the switch database between two nodes

    There is a file cache in /var/cache/fusionpbx. To be efficient, this is not cleared by default. It's cleared when it's changed locally. You can do many things with this, including replicate it or delete it when it's older than a certain amount of time.
  15. M

    SOLVED Upgrade to 5.3.3 Master - Dashboard empty

    App Defaults does not default everything it looks for missing defaults and adds those. This is done to protect people who are customizing things. But this makes the upgrade more work because you may have to adjust things. For example in the dashboard, default settings, or the dialplan.
  16. M

    SOLVED Upgrade to 5.3.3 Master - Dashboard empty

    Go to https://www.fusionpbx.com/support there you will find our support number. If you are available to call it shortly after I post this reply I have some time right now to help over the anydesk or chrome remote desktop. Its much easier to help when I can see exactly what is going on and can...
  17. M

    SOLVED Upgrade to 5.3.3 Master - Dashboard empty

    I dropped my tables like this to test it. Then ran this command. After this refresh the dashboard and it's all there again with all the details
  18. M

    SOLVED Upgrade to 5.3.3 Master - Dashboard empty

    You need to run an upgrade schema if the data structure is different from what you have the result may fail because the field requested in the select doesn't exist yet. 5.3 has now been released with its own branch.
  19. M

    FusionPBX 5.3 Released

    FusionPBX 5.3 Released. New Features - Modern theme and dashboard. - Many new dashboard features. - Widget with icon and link - Customize icons - Custom background colors per widget - Custom background optional gradients per widget - Too many new features for the dashboard to list...
  20. M

    Replicating the switch database between two nodes

    The FreeSWITCH data is temporary if the replication gets behind by 5 minutes the data is useless. Replication takes more resources so what do you get for the ability to see registrations from two or more servers? There isn't a lot of benefit to this. If you want to keep the call alive you have...