Search results

  1. 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...
  2. 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?
  3. 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.
  4. whut

    Zero-To-Hero Messages App Integration

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

    Zero-To-Hero Messages App Integration

    Doesn't this solution require completeting 10DLC and Campaigns with the providers?
  6. 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.
  7. 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...
  8. 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> =...
  9. 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...
  10. 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.
  11. 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.
  12. 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...
  13. whut

    Voicemail Transcription version 5.3 - Step by Step

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

    Remote Call Forwarding & Caller ID

    You could create a dialplan for each domain that executes before your outbound routes where you have a condition for outbound caller ID name and outbound caller ID number are not set, then set them to xyz... and 123...
  15. whut

    Inbound Calls parking into different domain

    Edit the valet_park dialplan. Make sure the context and the domain are both set to the name of the domain that you are currently in. Every domain should have its own valet park dial plan. You should not need to include @domain name in your call park BLF. But it does not harm anything if you do...
  16. whut

    Voicemail Transcription version 5.3 - Step by Step

    I would simply configure on the existing server and skip temp server.
  17. whut

    Dialing 000 Failing (Solved)

    Create a 911 outbound route and add "emergency" or similar to the description. After saving the outbound route edit the 2 outbound routes that fusionpbx created for you and replace any 911 or 933 regex variations of 911 or 933 Example (^911$|^933$) With (^000$) 911 = USA emergency services 933...
  18. whut

    Dialing 000 Failing (Solved)

    (^000$)
  19. whut

    Inbound Calls parking into different domain

    Hi feeling stumped, Look at the CDR details page of the call that parked the call in a different domain. Check the variables for domain name, domain UUID, and especially parking lot CDR call log will also be important to review. Make sure the DID only exists in the correct domain.