Search results

  1. whut

    XML_CDR

    CDR page already has accommodations for custom fields. What is your definition of "rate"? It could be many
  2. whut

    All outbound calls are going through only one gateway

    Your outbound routes look wrong. When you create a new outbound route an order 22 for setting direction = outbound early enough is important. Do not bridge in the order 22 outbound route. In the order 100 (or roughly 100) that is where you are bridging. Edit the order 100 to include an...
  3. whut

    Stop call recordings

    Yes
  4. whut

    Stop call recordings

    I have seen a small number of cases when the GUI displayed incorrectly. Check the record fields in the tables for these tables. If you find any that are record = true then re-save that entity in the GUI and check the table again to make sure it saved correctly. sip flush cache after changes
  5. whut

    Stop call recordings

    sip flush cache would be wise
  6. whut

    Stop call recordings

    Start by checking the inbound destinations, call centers, and the extensions. Each of these have recording settings.
  7. whut

    Active Calls Page Empty

    see if this post helps with your issue https://www.pbxforums.com/threads/active-calls-dashboard.8562/
  8. whut

    Provisioning server

    You can have a different server perform provisioning. You can set the variables in default settings. It has been a long time since I have done this so I am not remembering the details yet. As pbxgeek has mentioned, the no-touch RPS solutions that a few manufactures provide is a very nice way for...
  9. whut

    Call recording

    Good points to consider. voicemail transcriptions are very short and are only a tiny consideration for STT. Long recordings would be a paramount consideration.
  10. whut

    Call recording

    I have seen a very small set of occurrences with the transcription service providers returning results too slowly where the transcriptions are not included in a voicemail to email notifications. Otherwise the module has worked very well with multiple STT service providers. I believe tou do bring...
  11. whut

    Call recording

    Fusionpbx does transcription https://github.com/fusionpbx/fusionpbx-app-transcribe
  12. whut

    Deleting a domain through postgres function

    @agree thanks again for the PL SQL I am finding it very useful. I have been testing it have have a couple of changes here - mostly executing the deletes in table order A-Z. Image below of the delete in A-Z table name order. CREATE OR REPLACE FUNCTION delete_domain(id UUID) RETURNS void AS $$...
  13. whut

    Deleting a domain through postgres function

    I removed the duplicate `AND table_schema = 'public'` in your WHERE clause in the below. CREATE OR REPLACE FUNCTION delete_domain(id UUID) RETURNS void AS $$ DECLARE r RECORD; BEGIN FOR r IN SELECT table_schema, table_name FROM information_schema.columns JOIN...
  14. whut

    Deleting a domain through postgres function

    nicely done. This could easily be adapted for other purposes too. :cool:
  15. whut

    Deleting a domain through postgres function

    That is nice PL SQL agree. But pressing the delete domain(s) button in the fusionpbx GUI will perform all of the deletes for you.O do not remember if it also deletes the recordings, messages, and others. It has been a long time since I have needed to remove a domain.
  16. whut

    Authentication Plugin

    FusionPBX has multi-factor authentication. You may want to investigate that. Check default settings for this. By default a valid user with X failed login attempts will be blocked for X minutes. Check default settings for this. I would not allow any unauthenticated visitors with access to the...
  17. whut

    Ongoing Issue With CDR

    Which version of FusionPBX are your webpages resting upon?
  18. whut

    Ongoing Issue With CDR

    I do not know of any proven correlation that would exclude you from updating FusionPBX and that would stop the CDRs from updating. Run every FusionPBX update option 1 at a time in successsion. Do not skip any upgrade options. If you watch the changes in github you will notice there have been...
  19. whut

    User Permission

    No. this has nothing to do with one of the few paid member feature. It is solely incorrectly setting user permissions and user extension associations.
  20. whut

    User Permission

    Fusionpbx already has this. It looks like you are assigning accounts to have super admin permissions group. Very not good. Assign the user group, assign the user to the appropriate extensions. Read any dcumentation you have access to.