Thanks, I&#39;ll try.&nbsp; I&#39;m using the trixbox and my 311 info was in extensions_custom.conf if that means anything.<br><br><div><span class="gmail_quote">On 12/27/06, <b class="gmail_sendername">John covici</b> &lt;<a href="mailto:covici@ccs.covici.com">
covici@ccs.covici.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Don&#39;t know if this will do it (see your full logs for details), but
<br>the timeout lines in your 311 are at least depricated if removed --<br>use the set statement and functions like this<br>exten =&gt; s,n,Set(TIMEOUT(digit)=5)<br><br>Hope this helps.<br><br>on Wednesday 12/27/2006 blackwater dev(
<a href="mailto:blackwaterdev@gmail.com">blackwaterdev@gmail.com</a>) wrote<br> &gt; Not sure if this has anything to do with it but running the input.php script<br> &gt; directly from the command line gives this warning:
<br> &gt;<br> &gt; PHP Warning:&nbsp;&nbsp;Unknown(): Unable to load dynamic library<br> &gt; &#39;/usr/lib/php4/imap.so&#39; - libc-client.so.0: cannot open shared object file:<br> &gt; No such file or directory in Unknown on line 0
<br> &gt;<br> &gt; Thanks.<br> &gt;<br> &gt; On 12/27/06, blackwater dev &lt;<a href="mailto:blackwaterdev@gmail.com">blackwaterdev@gmail.com</a>&gt; wrote:<br> &gt; &gt;<br> &gt; &gt; I have this code which was taken from the phpagi project page along with
<br> &gt; &gt; the following in extensions_conf and the output from the asterisk CLI.&nbsp;&nbsp;When<br> &gt; &gt; I call the 311 extension, I does nothing then hangs up.&nbsp;&nbsp;What am I doing<br> &gt; &gt; wrong??<br> &gt; &gt;<br> &gt; &gt; ----php code------------
<br> &gt; &gt;<br> &gt; &gt; #!/usr/local/bin/php -q<br> &gt; &gt; &lt;?php<br> &gt; &gt;&nbsp;&nbsp; set_time_limit(30);<br> &gt; &gt;&nbsp;&nbsp; require(&#39;phpagi.php&#39;);<br> &gt; &gt;<br> &gt; &gt;&nbsp;&nbsp; $agi = new AGI();<br> &gt; &gt;&nbsp;&nbsp; $agi-&gt;answer();
<br> &gt; &gt;&nbsp;&nbsp; $cid = $agi-&gt;parse_callerid();<br> &gt; &gt;&nbsp;&nbsp; $agi-&gt;text2wav(&quot;Hello, {$cid[&#39;name&#39;]}.&nbsp;&nbsp;Let&#39;s enter some text.&quot;);<br> &gt; &gt;&nbsp;&nbsp; $text = $agi-&gt;text_input(&#39;UPPERCASE&#39;);
<br> &gt; &gt;&nbsp;&nbsp; $agi-&gt;text2wav(&quot;You entered $text&quot;);<br> &gt; &gt;&nbsp;&nbsp; $agi-&gt;text2wav(&#39;Goodbye&#39;);<br> &gt; &gt;&nbsp;&nbsp; $agi-&gt;hangup();<br> &gt; &gt; ?&gt;<br> &gt; &gt;<br> &gt; &gt; ------extensions_custom.php------------
<br> &gt; &gt; exten =&gt; 311,1,Answer<br> &gt; &gt; exten =&gt; 311,2 Wait(1)<br> &gt; &gt; exten =&gt; 311,3,DigitTimeout(7)<br> &gt; &gt; exten =&gt; 311,4,ResponseTimeout(10)<br> &gt; &gt; exten =&gt; 311,5,AGI( input.php
)<br> &gt; &gt;<br> &gt; &gt; ------CLI output ----------------------<br> &gt; &gt;&nbsp;&nbsp;-- Executing Answer(&quot;SIP/200-09b20488&quot;, &quot;&quot;) in new stack<br> &gt; &gt;&nbsp;&nbsp; == Spawn extension (from-internal, 311, 2) exited non-zero on
<br> &gt; &gt; &#39;SIP/200-09b20488&#39;<br> &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; -- Executing Macro(&quot;SIP/200-09b20488&quot;, &quot;hangupcall&quot;) in new stack<br> &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; -- Executing ResetCDR(&quot;SIP/200-09b20488&quot;, &quot;w&quot;) in new stack
<br> &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; -- Executing NoCDR(&quot;SIP/200-09b20488&quot;, &quot;&quot;) in new stack<br> &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; -- Executing Wait(&quot;SIP/200-09b20488&quot;, &quot;5&quot;) in new stack<br> &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; -- Executing Hangup(&quot;SIP/200-09b20488&quot;, &quot;&quot;) in new stack
<br> &gt; &gt;&nbsp;&nbsp; == Spawn extension (macro-hangupcall, s, 4) exited non-zero on<br> &gt; &gt; &#39;SIP/200-09b20488&#39; in macro &#39;hangupcall&#39;<br> &gt; &gt;&nbsp;&nbsp; == Spawn extension (macro-hangupcall, s, 4) exited non-zero on
<br> &gt; &gt; &#39;SIP/200-09b20488&#39;<br> &gt; Not sure if this has anything to do with it but running the input.php script directly from the command line gives this warning:&lt;br&gt;&lt;br&gt;PHP Warning:&amp;nbsp; Unknown(): Unable to load dynamic library &amp;#39;/usr/lib/php4/imap.so&amp;#39; -
<br> &gt; libc-client.so.0: cannot open shared object file: No such file or directory in Unknown on line 0&lt;br&gt;&lt;br&gt;Thanks.&lt;br&gt;&lt;br&gt;&lt;div&gt;&lt;span class=&quot;gmail_quote&quot;&gt;On 12/27/06, &lt;b class=&quot;gmail_sendername&quot;&gt;blackwater dev&lt;/b&gt; &amp;lt;&lt;a href=&quot;mailto:
<a href="mailto:blackwaterdev@gmail.com">blackwaterdev@gmail.com</a>&quot;&gt;<br> &gt; <a href="mailto:blackwaterdev@gmail.com">blackwaterdev@gmail.com</a>&lt;/a&gt;&amp;gt; wrote:&lt;/span&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 
0.8ex; padding-left: 1ex;&quot;&gt;I have this code which was taken from the phpagi project page along with the following in extensions_conf and the output from the asterisk CLI.&amp;nbsp; When I call the 311 extension, I does nothing then hangs up.&amp;nbsp; What am I doing wrong??
<br> &gt; &lt;br&gt;&lt;br&gt;----php code------------&lt;br&gt;&lt;br&gt;#!/usr/local/bin/php -q&lt;br&gt;&amp;lt;?php&lt;br&gt;&amp;nbsp; set_time_limit(30);&lt;br&gt;&amp;nbsp; require(&amp;#39;phpagi.php&amp;#39;);&lt;br&gt;&lt;br&gt;&amp;nbsp; $agi = new AGI();&lt;br&gt;&amp;nbsp; $agi-&amp;gt;answer();&lt;br&gt;&amp;nbsp; $cid = $agi-&amp;gt;parse_callerid();
<br> &gt; &lt;br&gt;&amp;nbsp; $agi-&amp;gt;text2wav(&amp;quot;Hello, {$cid[&amp;#39;name&amp;#39;]}.&amp;nbsp; Let&amp;#39;s enter some text.&amp;quot;);&lt;br&gt;&amp;nbsp; $text = $agi-&amp;gt;text_input(&amp;#39;UPPERCASE&amp;#39;);&lt;br&gt;&amp;nbsp; $agi-&amp;gt;text2wav(&amp;quot;You entered $text&amp;quot;);&lt;br&gt;&amp;nbsp; $agi-&amp;gt;text2wav(&amp;#39;Goodbye&amp;#39;);
<br> &gt; &lt;br&gt;&amp;nbsp; $agi-&amp;gt;hangup();&lt;br&gt;?&amp;gt;&lt;br&gt;&lt;br&gt;------extensions_custom.php------------&lt;br&gt;exten =&amp;gt; 311,1,Answer&lt;br&gt;exten =&amp;gt; 311,2 Wait(1)&lt;br&gt;exten =&amp;gt; 311,3,DigitTimeout(7)&lt;br&gt;exten =&amp;gt; 311,4,ResponseTimeout(10)&lt;br&gt;exten =&amp;gt; 311,5,AGI(
<br> &gt; input.php)&lt;br&gt;&lt;br&gt;------CLI output ----------------------&lt;br&gt;&amp;nbsp;-- Executing Answer(&amp;quot;SIP/200-09b20488&amp;quot;, &amp;quot;&amp;quot;) in new stack&lt;br&gt;&amp;nbsp; == Spawn extension (from-internal, 311, 2) exited non-zero on &amp;#39;SIP/200-09b20488&amp;#39;
<br> &gt; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- Executing Macro(&amp;quot;SIP/200-09b20488&amp;quot;, &amp;quot;hangupcall&amp;quot;) in new stack&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- Executing ResetCDR(&amp;quot;SIP/200-09b20488&amp;quot;, &amp;quot;w&amp;quot;) in new stack&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- Executing NoCDR(&amp;quot;SIP/200-09b20488&amp;quot;, &amp;quot;&amp;quot;) in new stack
<br> &gt; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- Executing Wait(&amp;quot;SIP/200-09b20488&amp;quot;, &amp;quot;5&amp;quot;) in new stack&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- Executing Hangup(&amp;quot;SIP/200-09b20488&amp;quot;, &amp;quot;&amp;quot;) in new stack&lt;br&gt;&amp;nbsp; == Spawn extension (macro-hangupcall, s, 4) exited non-zero on &amp;#39;SIP/200-09b20488&amp;#39; in macro &amp;#39;hangupcall&amp;#39;
<br> &gt; &lt;br&gt;&amp;nbsp; == Spawn extension (macro-hangupcall, s, 4) exited non-zero on &amp;#39;SIP/200-09b20488&amp;#39;<br> &gt;<br> &gt; &lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;<br> &gt; _______________________________________________
<br> &gt; --Bandwidth and Colocation provided by <a href="http://Easynews.com">Easynews.com</a> --<br> &gt;<br> &gt; asterisk-users mailing list<br> &gt; To UNSUBSCRIBE or update options visit:<br> &gt;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://lists.digium.com/mailman/listinfo/asterisk-users">
http://lists.digium.com/mailman/listinfo/asterisk-users</a><br><br>--<br>Your life is like a penny.&nbsp;&nbsp;You&#39;re going to lose it.&nbsp;&nbsp;The question is:<br>How do<br>you spend it?<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; John Covici<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="mailto:covici@ccs.covici.com">
covici@ccs.covici.com</a><br>_______________________________________________<br>--Bandwidth and Colocation provided by <a href="http://Easynews.com">Easynews.com</a> --<br><br>asterisk-users mailing list<br>To UNSUBSCRIBE or update options visit:
<br>&nbsp;&nbsp; <a href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br></blockquote></div><br>