Boa tarde a todos.<div>Eu estou implanto  liga pra mim, mas o problema é que ele tem que ligar para dois telefones fixo comum, eu ja tenho funcionado um script que liga para o ramal e depois para o fixo,  mas o problema que quando coloco os dois pra fixo num rola, alguém pode me ajudar.</div>
<div><br></div><div><div>&lt;html&gt;</div><div>&lt;head&gt;</div><div>&lt;title&gt;Liguq pra mim&lt;/title&gt;</div><div>&lt;/head&gt;</div><div>&lt;body&gt;</div><div>&lt;?</div><div>#Click-To-Call script brought to you by VoipJots.com</div>
<div><br></div><div><br></div><div>#------------------------------------------------------------------------------------------</div><div>#edit the below variable values to reflect your system/information</div><div>#------------------------------------------------------------------------------------------</div>
<div><br></div><div>#specify the name/ip address of your asterisk box</div><div>#if your are hosting this page on your asterisk box, then you can use</div><div>#127.0.0.1 as the host IP.  Otherwise, you will need to edit the following</div>
<div>#line in manager.conf, under the Admin user section:</div><div>#permit=<a href="http://127.0.0.1/255.255.255.0">127.0.0.1/255.255.255.0</a></div><div>#change to:</div><div>#permit=<a href="http://127.0.0.1/255.255.255.0,xxx.xxx.xxx.xxx">127.0.0.1/255.255.255.0,xxx.xxx.xxx.xxx</a> ;(the ip address of the server this page is running on)</div>
<div>$strHost = &quot;127.0.0.1&quot;;</div><div><br></div><div>#specify the username you want to login with (these users are defined in /etc/asterisk/manager.conf)</div><div>#this user is the default AAH AMP user; you shouldn&#39;t need to change, if you&#39;re using AAH.</div>
<div>$strUser = &quot;admin&quot;;</div><div><br></div><div>#specify the password for the above user</div><div>$strSecret = &quot;elastix456&quot;;</div><div><br></div><div>#specify the channel (extension) you want to receive the call requests with</div>
<div>#e.g. SIP/XXX, IAX2/XXXX, ZAP/XXXX, etc</div><div>$strChannel = &quot;SIP/42003&quot;;</div><div><br></div><div>#specify the context to make the outgoing call from.  By default, AAH uses from-internal</div><div>#Using from-internal will make you outgoing dialing rules apply</div>
<div>$strContext = &quot;a2billing&quot;;</div><div><br></div><div>#specify the amount of time you want to try calling the specified channel before hangin up</div><div>$strWaitTime = &quot;30&quot;;</div><div><br></div><div>
#specify the priority you wish to place on making this call</div><div>$strPriority = &quot;1&quot;;</div><div><br></div><div>#specify the maximum amount of retries</div><div>$strMaxRetry = &quot;2&quot;;</div><div><br></div>
<div>#--------------------------------------------------------------------------------------------</div><div>#Shouldn&#39;t need to edit anything below this point to make this script work</div><div>#--------------------------------------------------------------------------------------------</div>
<div>#get the phone number from the posted form</div><div>$strExten = $_POST[&#39;txtphonenumber&#39;];</div><div><br></div><div>#specify the caller id for the call</div><div><br></div><div>$strCallerId = &quot;&lt;$strExten&gt;&quot;;</div>
<div><br></div><div>$length = strlen($strExten);</div><div><br></div><div>if ($length == 11 &amp;&amp; is_numeric($strExten))</div><div>{</div><div>$oSocket = fsockopen($strHost, 5038, $errnum, $errdesc) or die(&quot;Connection to host failed&quot;);</div>
<div>fputs($oSocket, &quot;Action: login\r\n&quot;);</div><div>fputs($oSocket, &quot;Events: off\r\n&quot;);</div><div>fputs($oSocket, &quot;Username: $strUser\r\n&quot;);</div><div>fputs($oSocket, &quot;Secret: $strSecret\r\n\r\n&quot;);</div>
<div>fputs($oSocket, &quot;Action: originate\r\n&quot;);</div><div>fputs($oSocket, &quot;Channel: $strChannel\r\n&quot;);</div><div>fputs($oSocket, &quot;WaitTime: $strWaitTime\r\n&quot;);</div><div>fputs($oSocket, &quot;CallerId: $strCallerId\r\n&quot;);</div>
<div>fputs($oSocket, &quot;Exten: $strExten\r\n&quot;);</div><div>fputs($oSocket, &quot;Context: $strContext\r\n&quot;);</div><div>fputs($oSocket, &quot;Priority: $strPriority\r\n\r\n&quot;);</div><div>fputs($oSocket, &quot;Action: Logoff\r\n\r\n&quot;);</div>
<div>fclose($oSocket);</div><div>?&gt;</div><div>&lt;p&gt;</div><div>&lt;table width=&quot;300&quot; border=&quot;1&quot; bordercolor=&quot;#630000&quot; cellpadding=&quot;3&quot; cellspacing=&quot;0&quot;&gt;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;tr&gt;&lt;td&gt;</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;font size=&quot;2&quot; face=&quot;verdana,georgia&quot; color=&quot;#630000&quot;&gt;Estamos atualmente tentando ligar para você. Por favor espere o seu telefone!&lt;br&gt;Se o seu telefone não toca depois de 2 minutos, pedimos desculpas, pois seu telefone deve estar ocupado ou ja estamos em outra ligação.&lt;br&gt;&lt;a href=&quot;&lt;? echo $_SERVER[&#39;PHP_SELF&#39;] ?&gt;&quot;&gt;Try Again&lt;/a&gt;&lt;/font&gt;</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;/td&gt;&lt;/tr&gt;</div><div>&lt;/table&gt;</div><div>&lt;/p&gt;</div><div>&lt;?</div><div>}</div><div>else</div><div>{</div><div>?&gt;</div><div>&lt;p&gt;</div>
<div>&lt;table width=&quot;300&quot; border=&quot;1&quot; bordercolor=&quot;#630000&quot; cellpadding=&quot;3&quot; cellspacing=&quot;0&quot;&gt;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;tr&gt;&lt;td&gt;</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;font size=&quot;2&quot; face=&quot;verdana,arial,georgia&quot; color=&quot;#630000&quot;&gt;Entre com o seu numero de telefone (0XX-XXXX-XXXX), e espere que em alguns segundos estaremos te ligando!&lt;/font&gt;</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;form action=&quot;&lt;? echo $_SERVER[&#39;PHP_SELF&#39;] ?&gt;&quot; method=&quot;post&quot;&gt;</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>&lt;input type=&quot;text&quot; size=&quot;20&quot; maxlength=&quot;11&quot; name=&quot;txtphonenumber&quot;&gt;&lt;br&gt;</div>
<div><span class="Apple-tab-span" style="white-space:pre">                </span>&lt;input type=&quot;submit&quot; value=&quot;Call Us!&quot;&gt;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;/form&gt;</div>
<div><span class="Apple-tab-span" style="white-space:pre">        </span>&lt;/td&gt;&lt;/tr&gt;</div><div>&lt;/table&gt;</div><div>&lt;/p&gt;</div><div>&lt;?</div><div>}</div><div>?&gt;</div><div>&lt;/body&gt;</div><div>&lt;/html&gt;</div>
</div><div><br></div>