Search results

  1. whut

    Call has been on hold and total hold time

    Do you have these variables populated? I have many installations with multiple branches and so far I do not see any CDRs with these values != 0
  2. whut

    Call has been on hold and total hold time

    I am wanting to know a few things about a call in fusionpbx like "has this call been on hold?" and "what is the total time this call has been on hold?". I found these variables inside the CDR details, but they are always 0. hold_accum_ms 0 hold_accum_usec 0 last_hold_epoch 0...
  3. whut

    Total number of records

    You will probably need to export and evaluate removing duplicates or write a SQL query to get the distinct list of devices.
  4. whut

    Event_guard

    I have disabled ring groups and I have disabled end points within ring groups and I cannot duplicate your bug @pbxgeek. What is your version of fusionpbx code?
  5. whut

    Total number of records

    Try device logs https://github.com/fusionpbx/fusionpbx-app-device_logs
  6. 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...
  7. 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.
  8. whut

    Event_guard

    Don't delete the table! Delete the records that you wish to be deleted
  9. 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
  10. 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...
  11. 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?
  12. 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.
  13. whut

    Zero-To-Hero Messages App Integration

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

    Zero-To-Hero Messages App Integration

    Doesn't this solution require completeting 10DLC and Campaigns with the providers?
  15. 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.
  16. 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...
  17. 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> =...
  18. 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...