Search results

  1. Adrian Fretwell

    Getting error in php editor

    Yes it does, it uses https://packages.sury.org/php/ Don't ask me about this repository, I have never had to deal with it.
  2. Adrian Fretwell

    Getting error in php editor

    The library shouldn't be missing if you installed Fusion using the recommended installer on a clean install of the recommended operating system. But to answer your question: Assuming you are running Debian as your OS the standard method would be... If you are logged in as root just run...
  3. Adrian Fretwell

    Getting error in php editor

    It helps us to help you if you let us know the relevant version numbers for the software you are running. My guess would be your PHP installation is missing the GD library. https://www.php.net/manual/en/function.imagecreate.php
  4. Adrian Fretwell

    Call Recording Issue

    Hi Kurt, I didn't respond immediately when you posted, I was hoping someone else's help would be more useful than mine. I was unable to replicate your issue on my test box, but I remember that we had this sort of wierdness last year. I have been trying to remember the details but I'm pretty...
  5. Adrian Fretwell

    Feature Code for Call Barge

    *33 Eavesdrop option 3 may do what you want. https://docs.fusionpbx.com/en/latest/additional_information/feature_codes.html The operator panel also had this facility if you had the correct permissions, but I know the OP has undergone a few changes recently so not sure if it still works or...
  6. Adrian Fretwell

    Unable to configure outbound calls to PSTN

    I completely agree with DigitalDaz. I don't understand why you need the second internal profile. You have two networks. 192.168.* for your private LAN and 10.50.* on your WAN or Provider network. Can you not just set ext-rtp-ip and ext-sip-ip in your internal profile to 192.168.6.2 and...
  7. Adrian Fretwell

    Unable to configure outbound calls to PSTN

    The call now looks to being placed correctly on the gateway by 192.168.6.2. The invite is received by 10.50.185.2 which initially responds with a 100 Trying and then a 403 Forbidden. The clue may be in the Warning header: Warning: 399 10.50.185.2:5060 "Registration Cache Entry Not Found" This...
  8. Adrian Fretwell

    Unable to configure outbound calls to PSTN

    You appear to now have two capturing groups in the regexp for your outbound route: Dialplan: sofia/internal/100@192.168.6.2 Regex (PASS) [TATA-POE.91d10] destination_number(+9183760XXXXX) =~ /^\+?(91)?(\d{10})$/ break=on-false Which is probably why you are only sending the digits 91 to your...
  9. Adrian Fretwell

    Unable to configure outbound calls to PSTN

    Well that number should match OK. I assume the extension making the call is in the same context (domain) as the outbound route. Can you post a log of a failed outbound call.
  10. Adrian Fretwell

    Unable to configure outbound calls to PSTN

    So what are to dialing that should make the outbound route? From looking at your regexp you must have a 9, it can optionally be prefixed with a + and can optionally be followed by a 1, then 10 digits must follow in order to match.
  11. Adrian Fretwell

    Unable to configure outbound calls to PSTN

    Most of the time this is caused by the regexp for the condition statement in the outbound route not matching what the user is dialing to make the call. If the dialed digits do not match an outbound route, the call will be classified as internal. You may have some additional complications with...
  12. Adrian Fretwell

    Fax Inbox Issue After Upgrade

    I'm sorry I don't have time to test this, but looking at the code, yes it probably would cause the same issue. It is unlikely that anyone would be interested in fixing this old code, especially given the massive raft of software update work that has, and is being done, in the master branch to...
  13. Adrian Fretwell

    Fax Inbox Issue After Upgrade

    I have not had much time to look at this, but at a quick glance, I think there is a problem with setting the $fax_uuid variable in the fax_files.php code that you quote on github: //get fax extension if (is_uuid($fax_uuid)) { //get the fax uuid $fax_uuid = $_GET["id"]; Here...
  14. Adrian Fretwell

    Inbound Destination complains of no destination defined

    Just a guess, does the user you are logged in as have the permissions to edit the destination? I ask because the Destination field doesn't seem to have an edit box. I know quite a lot of work has been done recently on tightening security about what a non super admin can and can't do with the...
  15. Adrian Fretwell

    Ping in FusionPBX/FreeSwitch

    Alex, first of all, yes this ping is a SIP OPTIONS sent to the endpoint by the Sofia SIP stack. I'm not sure about the (unknown), I have always assumed it to be a reference to presence status. The information on this Status->Registrations page is gathered from a Freeswitch event socket...
  16. Adrian Fretwell

    Inline bridge parameter with mod_distributor

    I think you are right, maybe call it once and set a variable from it.
  17. Adrian Fretwell

    Ping in FusionPBX/FreeSwitch

    Not quite sure what you are asking here. The generally accepted term "ping" is used, as you say, to refer to a layer 3 ICMP protocol message to test round trip connectivity between two end points. There are other types of ping, for example a layer 2 ping sometimes referred to as a MAC ping...
  18. Adrian Fretwell

    how to limit outbound calls using group type

    As @ad5ou said Toll Allow will probably help. You can certainly use it to stop extensions getting an outbound route by dialing +1. You would need to do extra work to play an error message. If you add another condition to your Vitelity outbound route, just below the user_exists condition...
  19. Adrian Fretwell

    Yealink provision for lines and buttons

    Yealink_trust_certificates is a text field but requires the string "true" or "false". This gets evaluated to a 0 or 1 in the provision templates y000000000067.cfg file: ####################################################################################### ##...
  20. Adrian Fretwell

    how to limit outbound calls using group type

    There is quite a lot of information available: https://freeswitch.org/confluence/display/FREESWITCH/Regular+Expression https://www.rexegg.com/regex-quickstart.html https://en.wikipedia.org/wiki/Regular_expression There is even a reqular expression crossword site, this is great to help you...