Search results

  1. D

    Blank User Dashboard

    The menu needs updating after some upgrades because a few paths have changed over the years. A few options 1. Edit it manually in the menu editor 2. Run Menu Defaults 3. Create a new menu and apply defaults to that and use it instead. You can see the "menu" items in the code by looking at...
  2. D

    Same Database - Different fusionpbx servers - Unable to call from one server to the other

    Just disable the is_local dialplan. Last time I was evaluating using it my bills had like $10 a month of actual cost for calls that would use it, so definitely not worth the engineering to try to get a local DID routing facility working for a multi server cluster.
  3. D

    Same Database - Different fusionpbx servers - Unable to call from one server to the other

    But 2k extensions is doable on a single server. Our peak server is 6000 but doesnt have any blf, which helps a lot.
  4. D

    Same Database - Different fusionpbx servers - Unable to call from one server to the other

    I assume you are using the is_local dialplan then. That won't work with a cluster like that. If you want that capability you need to modify it extensively, something like do a dns lookup to find the appropriate server. You could also use Kamailio or opensips between you and your carrier.
  5. D

    Same Database - Different fusionpbx servers - Unable to call from one server to the other

    FusionPBX does not support that. With multiple servers the best you can do is have some domains connect to one server and some on the other. I manage it via dns, each customer/domain dns record resolves to a specific server in the cluster, that entire customer has to be on the same server. I can...
  6. D

    Source Control Management (SCM) Files Accessible (HTTP) Vulnerability in Fusion PBX

    That's an old release, there are numerous known vulnerabilities that are resolved in a newer release, at minimum 5.0 but the best is running the master branch.
  7. D

    Multi-tenant comparison

    If I were to go with a new company and they wanted a solution, I would definitely go with Fusionpbx. Several years ago not knowing it as extensively as I do now I would seriously consider one of the commercial products because they have more seamless mobile app integrations. I started with...
  8. D

    What is the best way to POST JSON data to a URL after a call has ended?

    The basics of a way to do it is to write a lua script that does what you want and register an event handler for the hangup event. Take a look at scripts like the feature event script or blf_subscribe, I think they start off with an example of registering for events. As far as if you want to...
  9. D

    BLF Details

    Yes, there is a value in the Sip Profiles called presence-privacy that will do it per Profile. Additionally, some phones (Grandstream I know for certain) have a provision template setting for hiding/showing that information.
  10. D

    IVR Options use Dialplan Manager Entries

    Easier: in Dialplan Manager, edit the echo *9196 dialplan. Change Destination to True. No need to create bridges or use Loopback.
  11. D

    Dialogflow

    Has anyone messed with Dialogflow and FusionPBX? I think it would be cool to use it, there is a freeswitch module for it and I'm thinking about building a simple dialogflow integration to manage some basic parameters of that integration from Fusionpbx, even if its just a dialogflow configuration...
  12. D

    Fusion PBX API

    For android phone apps check out https://ringotel.co/ - they have multiple apps and integrate nicely. I'm even working on better integration myself for our internal processes. If you are looking at making an Admin app for managing Fusionpbx and not just a phone app, that would be interesting...
  13. D

    IVR to extrnal number CDR issue

    You may be looking for b-leg CDR records. There are settings in the default settings for importing b legs, but you also have to enable them in the freeswitch autoload_config xml_cdr.conf.xml <param name="log-b-leg" value="true"/> to create them in the first place. It also has implications that...
  14. D

    Ring Group Call Timeout

    If this is an incoming call going to a Ring Group, the carrier may be ending the call after 46 seconds of ringing. If you want to circumvent this, you need to first "Answer" the call, either by setting a greeting (even 1 second of silence might work) before you start "ringing" to the ring group...
  15. D

    CallerID replaced with Gateway Username when sending calls from SIP to FusionPBX

    What I think you missed is the "caller-id-in-from" field for the gateway. Edit the gateway, click Advanced, and set Caller ID in From to True would accomplish this in the future.
  16. D

    v_database_transactions table size

    Yes, it's save to delete those rows. My regular maintenance script removes old transactions. It is only used to see what was done and can be used to un-do it. Those records are not needed for regular operation.
  17. D

    FusionPBX Quickbooks integration, Possible?

    FusionPBX isn't a particularly good place to do per minute billing or tracking. Its flexibility makes it hard to accurately make those determinations. I track through my carrier by did, but that has its own caveats and limitations. The approach to get good tracking and billing is putting your...
  18. D

    DND status not shown to other phones monitoring the extension - BLF stays Green

    Based on some discussions in IRC, no we don't have a single button solution. My workaround when this is absolutely mandatory is 2 buttons per user, which sucks but is workable. The way to fix it would be these basic steps: 1) Figure out what calls/commands need to be issued to Freeswitch to...
  19. D

    SOLVED Extension Call Timeout not working

    This thread is marked as solved and I am still experiencing this issue. Any ideas? Also Hi CrzyGK!