Displaying 3 results from an estimated 3 matches for "pbxsh_bin".
2018 Sep 14
2
AGI timeout option
I don't know AGIspeedy, but I have some PHP scripts where I set a
connect timeout using streams.
Example using https, but should be easily adaptable to non-s http.:
$pbxsh_bin = @file_get_contents("https://blah.blah.blah", FALSE,
@stream_context_create(array('https' => array('timeout' => 5,
"verify_peer"=>false, "verify_peer_name"=>false))));
On 09/14/2018 01:40 PM, Carlos Chavez wrote:
> On 9/13/2018 8:04 P...
2018 Sep 18
2
AGI timeout option
...5 Sep 2018 at 03:56, Eric Wieling <ewieling at nyigc.com> wrote:
>
>> I don't know AGIspeedy, but I have some PHP scripts where I set a
>> connect timeout using streams.
>>
>> Example using https, but should be easily adaptable to non-s http.:
>>
>> $pbxsh_bin = @file_get_contents("https://blah.blah.blah", FALSE,
>> @stream_context_create(array('https' => array('timeout' => 5,
>> "verify_peer"=>false, "verify_peer_name"=>false))));
>>
>> On 09/14/2018 01:40 PM, Carlos Chave...
2018 Sep 14
3
AGI timeout option
Hello list,
Hope you all doing well!
Recently, I had an issue with a FastAGI PHP script, which under some
specific situation would run into an infinity loop, consuming all CPU
resources. This also was preventing Asterisk to terminated the call
properly because it was waiting for the AGI to return... The application
uses AGIspeedy to process the AGI calls, not sure if this can be affecting
this