Uso esta função:<br><br><br><br><?php<br>// Copyright 2006 Baldwin Technology Solutions, Inc.<br>// Requires Asterisk, Apache, and PHP. Place this file<br>// onto your apache server and call the URL like so<br>// <a href="http://yourapacheserver/c2c.php?number=15185551234">http://yourapacheserver/c2c.php?number=15185551234</a><br>
// A page will display that it is calling your extension and<br>// what number it is calling.<br>// On the callerid on the phone it will show Web Call 15185551234<br>#ip address that asterisk is on.<br>$strHost = "aqui entra o ip do pabx";<br>
<br>#specify the username you want to login with (these users are defined in /etc/asterisk/manager.conf)<br>#this user is the default AAH AMP user; you shouldn't need to change, if you're using AAH.<br>$strUser = "Usuario com permissao no PABX";<br>
#specify the password for the above user<br>$strSecret = "SENHA DO USUARIO";<br><br>#specify the channel (extension) you want to receive the call requests with<br>#e.g. SIP/XXX, IAX2/XXXX, ZAP/XXXX, etc<br>$strChannel = "SIP/".$_REQUEST['ramal']; //RAMAL DE QUEM LIGA<br>
<br>#specify the context to make the outgoing call from. By default, AAH uses from-internal<br>#Using from-internal will make your outgoing dialing rules apply<br>$strContext = "from-internal";<br><br>#specify the amount of time you want to try calling the specified channel before hangin up<br>
$strWaitTime = "30";<br><br>#specify the priority you wish to place on making this call<br>$strPriority = "1";<br><br>#specify the maximum amount of retries<br>$strMaxRetry = "2";<br><br>$number=strtolower($_REQUEST['number']); //Se for um número de suporte apenas coloca aqui<br>
$pos=strpos ($number,"local");<br>if ($number == null) :<br> exit() ;<br>endif ;<br>if ($pos===false) :<br>$errno=0 ;<br>$errstr=0 ;<br>$strCallerId = "Clique aqui <$strChannel>";<br>$oSocket = fsockopen ("$strHost", 5038, &$errno, &$errstr, 20);<br>
if (!$oSocket) {<br> echo "$errstr ($errno)<br>\n";<br>} else {<br>fputs($oSocket, "Action: login\r\n");<br>fputs($oSocket, "Events: off\r\n");<br>fputs($oSocket, "Username: $strUser\r\n");<br>
fputs($oSocket, "Secret: $strSecret\r\n\r\n");<br>fputs($oSocket, "Action: originate\r\n");<br>fputs($oSocket, "Channel: $strChannel\r\n");<br>fputs($oSocket, "WaitTime: $strWaitTime\r\n");<br>
fputs($oSocket, "CallerId: $strCallerId\r\n");<br>fputs($oSocket, "Exten: $number\r\n");<br>fputs($oSocket, "Context: $strContext\r\n");<br>fputs($oSocket, "Priority: $strPriority\r\n\r\n");<br>
fputs($oSocket, "Action: Logoff\r\n\r\n");<br>fclose($oSocket);<br> }<br>echo "Extension $strChannel should be calling $number." ;<br>echo "<script>window.close()</script>" ;<br>
else :<br>
exit() ;<br>endif ;<br>?><br><br><br clear="all">------------------------------------------------<br>Renato Amorim<br><a href="mailto:renatoamorim@renatoamorim.com" target="_blank">renatoamorim@renatoamorim.com</a><br>
<div>Fone: 3064-5413 // 7685-1468<br></div><br>
<br><br><div class="gmail_quote">Em 2 de agosto de 2011 12:44, Asterisk <span dir="ltr"><<a href="mailto:asterisk@teknisa.com">asterisk@teknisa.com</a>></span> escreveu:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Boa tarde amigos<br>
<br>
Alguem conhece alguma aplicação click-to-call em PHP ou ASP, mas que não<br>
seja para disparar uma ligação para o cliente.<br>
<br>
EX:<br>
<br>
click-to-call >> liga_suporte.<br>
<br>
Desde ja agradeço a atenção.<br>
<br>
Obrigado.<br>
<br>
<br>
_______________________________________________<br>
KHOMP: qualidade em placas de E1, GSM, FXS e FXO para Asterisk.<br>
- Hardware com alta disponibilidade de recursos e qualidade KHOMP<br>
- Suporte técnico local qualificado e gratuito<br>
Conheça a linha completa de produtos KHOMP em <a href="http://www.khomp.com.br" target="_blank">www.khomp.com.br</a><br>
_______________________________________________<br>
DIGIVOICE: Lider no mercado de placas para Asterisk<br>
Único fabricante com Centro de Treinamento especializado.<br>
LANÇAMENTO: Channel Bank TDMoE, até 64 canais FXS / FXO.<br>
<a href="http://www.digivoice.com.br" target="_blank">www.digivoice.com.br</a> ou (11)3016-5200.<br>
________<br>
LANÇAMENTO SHOPVOIP! Gateway Xibelis Lyric VoIP com 2,4 e 6 canais GSM.<br>
Arquitetura Escalável, Balanceamento de Carga, Portabilidade Numérica.<br>
Confira em <a href="http://www.yx.cl/landing/brasil/lyric_voip_asterisk.org" target="_blank">http://www.yx.cl/landing/brasil/lyric_voip_asterisk.org</a><br>
Mais informações: <a href="http://www.shopvoip.com.br" target="_blank">www.shopvoip.com.br</a> ou 0800-6021244<br>
______________________________________________<br>
Para remover seu email desta lista, basta enviar um email em branco para <a href="mailto:asteriskbrasil-unsubscribe@listas.asteriskbrasil.org">asteriskbrasil-unsubscribe@listas.asteriskbrasil.org</a><br>
</blockquote></div><br>