Search results

  1. whut

    Total number of records

    Try device logs https://github.com/fusionpbx/fusionpbx-app-device_logs
  2. whut

    FusionPBX 401 Unauthorized with Yealink T42G Rport - Resolved

    hmmm. That is good to be aware of. Were you having an issue registering through UDP when automatic provisioning? I would not expect that you would have an issue with this when automatically provisioning because the yealink_rport default setting is enabled by default and the Yealink provisioning...
  3. whut

    Event_guard

    But if you were to delete the table you do not need to figure out how to recreate it and the perfect schema manually. Fusionpbx will recreate it when you run the updates 2 - 5 on the upgrades page. That is part of the brilliance and power built into fusionpbx.
  4. whut

    Event_guard

    Don't delete the table! Delete the records that you wish to be deleted
  5. whut

    Auto Dialer for FreeSWITCH – Now with Predictive Dialing & Call Transcription!

    Fusionpbx-made web dialer. I have not tested it yet. https://github.com/fusionpbx/fusionpbx-app-phone
  6. whut

    CDR status issue with Version 5.4.1

    @mudasar321 that is nice to have a temporary fix and I would probably add the custom fix as well. But understand that this is very temporary fix. A custom fix will prevent you from updating your fusionpbx code without command line intervention. Then if the issue has not been fixed you will be...
  7. whut

    Valet Parking destination as header

    I am interested in your topic @Dast and would like to learn more about your solution. Which webrtc softphone are you using? In what way does the the parking_lot display in your softphone?
  8. whut

    Zero-To-Hero Messages App Integration

    I agree with you. But to be approved to use SMS with the providers you must provide opt out and help in your samples.
  9. whut

    Zero-To-Hero Messages App Integration

    Does this SMS solution have any of the required opt-out and help capabilities?
  10. whut

    Zero-To-Hero Messages App Integration

    Doesn't this solution require completeting 10DLC and Campaigns with the providers?
  11. whut

    Changing 911 as an emergency number

    The easiest method for 000 dialing will be to go to Dialplan > Outbound Routes > Add a new outbound route > select "911 Emergency" in dialplan expression dropdown > edit the dialplan to include 000 or 000 only.
  12. whut

    Zoiper app

    Recently I was asked about installing and using the fusionpbx-apps/zoiper application https://github.com/fusionpbx/fusionpbx-apps/tree/master/zoiper We installed the app and the app is full of errors and will not work without a lot of code changes. Has anyone used this app? Is there any value...
  13. whut

    Voicemail Transcription version 5.3 - Step by Step

    @bradgarrison, in my experience with azure stt url must be in this format: "https://<api_url>.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1?language=<language>&format=detailed" where <api_url> = "centralus" (in mak_make's case, "westus" in mine) <language> =...
  14. whut

    Voicemail Transcription version 5.3 - Step by Step

    Leave api_url as centralus as you have the region set in ms azure. From transcribe_azure.php: //build the setting object and get the recording path $this->api_key = $settings->get('transcribe', 'api_key'); $this->api_url = $settings->get('transcribe', 'api_url'); $this->language = $sett...
  15. whut

    Voicemail Transcription version 5.3 - Step by Step

    In transcribe_azure.php we see that we also need the language variable. Add it and set the value to en-US.
  16. whut

    Voicemail Transcription version 5.3 - Step by Step

    Improved! api_url variable was added 2 months ago. https://github.com/fusionpbx/fusionpbx-app-transcribe/commit/b09d71bac0094ce85c954fea602fac3111ce30b3 The description could use improvement for when to use or not to use for clarity in my opinion.
  17. whut

    Voicemail Transcription version 5.3 - Step by Step

    There is your problem. Close approximation to someone named Bill Gates. Azure requires API URL variable. You must create the variable and set the variable to the region that you set in azure. I Believe the transcription application should include this field and should have a description...
  18. whut

    Voicemail Transcription version 5.3 - Step by Step

    @mak_make which speech to text service are you trying to use?