Search results

  1. K

    multicast server with fusionpbx

    I think had it working a long time ago. I found a picture from my notes. *This solution is provided as-is with no warranty or money back guarantee. :)
  2. K

    SQLite is busy

    In the capture look at Statistics, IO Graph (Wireshark).That will tell you how many SIP packets/sec are coming and going. Remember that SIP Profiles are single threaded. Your issue could definitely be somewhere else, but this is the first place I always look.
  3. K

    SQLite is busy

    I don't think this is usual behavior. Does the warning creep in after a few hours or days or weeks after FS is started? A couple of thoughts... The database could be corrupt. Stop FreeSWITCH. Delete the db files and restart. It could be that you've maxed out the SIP profile with so many...
  4. K

    Ideal Fusionpbx Load Balaning Solution

    I think a lot of this depends on the environment. I would say that in your domain has a couple thousand extensions or less, then you can just load balance by DNS. I'm still leaning towards having a shared FS database for large customers (5000+ users in a domain). In my spare time I've played...
  5. K

    Greetings all!

    Welcome. Sounds like my story. We went from a 10,000 user Broadsoft switch to Fusion. Now we are at about 19,000 users on Fusion. It was quite the journey!
  6. K

    SOLVED Where to find transcription log

    Neither are quite right. Just comment out the IF statement so the logging statements are not conditional. Line 1 and line 4. Ultimately you just want to see the Watson results ouput to the console.
  7. K

    SOLVED Where to find transcription log

    Set Debug equal to a boolean true and watch the logs in FS. https://github.com/fusionpbx/fusionpbx/blob/master/resources/install/scripts/app/voicemail/resources/functions/record_message.lua#L225
  8. K

    Creating 1 time condition for 100 extensions

    You could do this in one short dialplan step. Here's the logic behind it. First, create a time condition. Then go to the condition from the dialplan manager and copy it so you have something to start with. You need to set an INLINE variable capturing the original number. Something...
  9. K

    multicast server with fusionpbx

    FreeSWITCH can send out multicast using https://freeswitch.org/confluence/display/FREESWITCH/mod_esf.
  10. K

    Speech Recognition IVR with Pocketsphinx

    Hey Everybody, I played around voice enabling IVR's using mod_pocketsphinx. It seems to work pretty well however pocketsphinx's error rate is still pretty high. For instance, it often thought I said "six" instead of "two". Because of this I limited to the words in the grammar file to "zero...
  11. K

    Maximum domain supported ?

    From my understanding that is fixed in Master branch. Adding a new domain doesn't run "App Defaults" for existing domains. A new domain should only take a few seconds now.
  12. K

    Support for UNIMRCP

    If you installed from package you can just use apt to install the module. apt-get install -y freeswitch-mod-unimrcp
  13. K

    502 Bad Gateway

    I always fix a 502 Bad Gateway with: systemctl restart php7.3-fpm Something in the web interface is probably hung or taking a really long time to run. It's php though, not nginx. If you have been manipulating files it's always good to issue "chown -R www-data:www-data /var/www/fusionpbx"
  14. K

    Trunk SIP FusionPBX and Yeastar TA410

    I see your confusion. The above code example is basically an outbound route added manually in Dialplan -> Dialplan Manager. When you click edit a dialplan rule and click "XML" on the top right, it will display as above. That code is not an extension like in Accounts -> Extensions. So in the...
  15. K

    Trunk SIP FusionPBX and Yeastar TA410

    I'm guessing you will need to register the yeastar as an extension, then write a dialplan step to send calls to that specific extension with a bridge statement. If it's a static IP then it shouldn't be that bad. If it's a dynamic IP, then you will need to lookup the registered extension, extract...
  16. K

    SOLVED Set Daily | Total And Concurrent Call Limits on Call Center or Queue

    No comment on call center queue reporting. Check out call_limit. You can limit concurrent calls and the rate of calls for an interval. https://freeswitch.org/confluence/display/FREESWITCH/mod_dptools%3A+Limit I use something like this in my dialplan to limit the rate of inbound calls to each...
  17. K

    Attendant transfer and callerID update

    Hmm...this seems to only work in my lab which is on FS 1.10.
  18. K

    Attendant transfer and callerID update

    This works for me. Do you have <action application="set" data="ignore_display_updates=true"/> set in your dialplan for the call? It should be not be in there or it should be set to FALSE. I suggest reviewing the SIP signalling to see if updates are sent the phone. That way you can see if it...
  19. K

    /usr/share/freeswitch/scripts content overwriten constantly

    Yes. Minions. I would keep on eye on Kevin, Dave or Bob.
  20. K

    /usr/share/freeswitch/scripts content overwriten constantly

    Upgrade App Defaults copies the scripts from "/var/www/fusionpbx/resources/install/scripts" to your active scripts directory.