search for: marke1

Displaying 2 results from an estimated 2 matches for "marke1".

Did you mean: marked
2010 Jan 11
0
PHP-Script (AGI) doesn't finish after upgrading to 1.6.0.15
Hi, I recently upgraded our asterisk server from some 1.4 version to version 1.6.0.15. From this point on my AGI scripts aren't working anymore, here is a simple example: [isdin] exten => 83086921,1,AGI(test.php) exten => 83086921,2,NOOP("MARKE1") exten => 83086921,3,WAIT(2) exten => 83086921,4,Hangup() /var/lib/asterisk/agi-bin/test.php ----------------------------------- #! /usr/bin/php -q <?php ob_implicit_flush(true); set_time_limit(6); error_reporting(0); $stdin=fopen("php://stdin","r"); while(!feof...
2008 Feb 06
0
Problem forwarding a call with an AGI script
...r to user B's phone (96). User B's phone rings and since there is no one to take the call, it returns the call to User A with an AGI script. The dialplan looks like this: [local] .... exten => 96,1,Dial(SIP/user4,10,tr) exten => 96,2,AGI(transfer.php) exten => 97,1,NoOp("MARKE1------------") exten => 97,2,DIAL(SIP/user1,20,tr) exten => 97,3,NoOp("MARKE2-------------") exten => 97,4,BUSY() transfer.php: #! /usr/bin/php -q <?php $i=0; ob_implicit_flush(true); set_time_limit(6); error_reporting(0); $stdin=fopen("php://stdin","r&qu...