Re: [asterisk-users] Digium Phone D40 plus dialing

2019-04-19 Thread Malcolm Davenport
Howdy, Try firmware 2.8.1. http://downloads.digium.com/pub/telephony/res_digium_phone/firmware/ Cheers On Tue, Apr 2, 2019 at 6:09 PM Mitch Johnson wrote: > This is one of those problems that kind of surprised me when it happened. > > We added a standalone Digit D40 phone so it could connect

[asterisk-users] Reload dialplan from AMI

2019-04-19 Thread Telium Technical Support
I see there is a modulereload function available from the AMI, but none of the listed modules (on the wiki) seem to reload the dialplan. Is there a way to reload the dialplan through this function? Or do I have to use the 'command' action? --

Re: [asterisk-users] Forking AGI or GoSub

2019-04-19 Thread Eric Wieling
In PHP something like: $pid = pcntl_fork(); if ($pid != 0) { // we are the parent // do parent stuff exit; } // we are the child, detatch from terminal $sid = posix_setsid(); if ($sid < 0) { die; } // do child stuff On 04/19/2019 02:00 PM, Mark Wiater wrote: On 4/19/2019 1:49

Re: [asterisk-users] Forking AGI or GoSub

2019-04-19 Thread Michael Munger
I am very much a PHP person. PHP doesn't really have an elegant way to handle forking / threading, which can make it non-trivial to implement and can be unreliable if the implementation is not exact. PHP must also be compiled to be thread safe in order to do this properly. Granted, the last

Re: [asterisk-users] Forking AGI or GoSub

2019-04-19 Thread Michael Munger
What’s the purpose of the URL? Does it assist operators who handle the emergency services call? Off the top of my head, I am not sure you can fork an AGI call from asterisk. Seems it would defeat the purpose of AGI, which should handle the call flow when it has control of the call. Have you

Re: [asterisk-users] Forking AGI or GoSub

2019-04-19 Thread Mark Wiater
On 4/19/2019 1:49 PM, Dovid Bender wrote: > Mark, > > I am using PHP agi and when forking the call does not continue util > the forked process is done. Am I doing it wrong? > > > On Wed, Apr 10, 2019 at 4:27 PM Mark Wiater > wrote: > > On 4/10/2019 3:54 PM,

Re: [asterisk-users] Forking AGI or GoSub

2019-04-19 Thread Dovid Bender
Mark, I am using PHP agi and when forking the call does not continue util the forked process is done. Am I doing it wrong? On Wed, Apr 10, 2019 at 4:27 PM Mark Wiater wrote: > On 4/10/2019 3:54 PM, Dovid Bender wrote: > > I have an AGI that can sometimes take time complete. I don't want the >

Re: [asterisk-users] Forking AGI or GoSub

2019-04-19 Thread Dovid Bender
Steve, In my case this is for emergency services. The AGI calls a web URL with the callers information. The call passes through Asterisk and we don't want to delay the call at all if the API takes 1-2 extra seconds. On Wed, Apr 10, 2019 at 10:01 PM Steve Edwards wrote: > On Wed, 10 Apr 2019,