Displaying 20 results from an estimated 500 matches similar to: "Manager API Output"
2007 Jul 06
1
Asterisk Manager
Hi
this is my code for * manager:
$oSocket = fsockopen($strHost, 5038,
$errnum, $errdesc) or die("Connection to host failed");
fputs($oSocket, "Action: login\r\n");
fputs($oSocket, "Username: $strUser\r\n");
fputs($oSocket, "Secret:
2007 Jul 08
1
Asterisk Help
Hi
I need help in configuring a auto dialer system using Asterisk. I'm holding
my customers number in MySQL want to fetch 10 numbers one time and dial if
gets connected and answered by customer wants to play a sequence of message
. Please help .
I've tried here is my code to place calls but in this I see no of failure
calls are more than 50%. so please advise.
2006 Dec 29
0
PHP to call script
Using the php script below. I am able to enter my number and the number to
call, however I get the following error:
-- AGI Script cid-spoof.agi completed, returning 0
== Parsing '/etc/asterisk/manager.conf': Found
== Parsing '/etc/asterisk/manager_custom.conf': Found
== Manager 'admin' logged on from 127.0.0.1
-- Executing Wait("OutgoingSpoolFailed",
2011 Feb 13
1
Call Files, Variable passing
Hi,
I am having trouble passing variables via the call files, here is my call
file via the php:
fputs($oSocket, "Action: login\r\n");
fputs($oSocket, "Events: off\r\n");
fputs($oSocket, "Username: $strUser\r\n");
fputs($oSocket, "Secret: $strSecret\r\n\r\n");
fputs($oSocket, "Action: originate\r\n");
fputs($oSocket,
2007 Jul 08
1
Early Media Handling
Hi
using php script and Asterisk manager I'm dialing numbers and once gets
connected send to an exten in my dial plan that plays an automated message
but some time without answering even it goes to my exten. How can I handle
early media in Asterisk that is I want only when user answer the call it
should goto my specified extension.
my php script:
$oSocket =
2007 Jan 02
5
Call connected, cannot hear or speak - $20 for fix
I am able to get this script to dial, but I am unable to talk or hear
anything. The script asks for the number to call and the the caller id to
display (if user is not at their normal extension). Once submitted, the
external extension receives a call, once answered the call is then placed to
the dentition number.
The script works as the call is place, but I cannot hear or say anything.
Any one
2009 Dec 18
2
To Asterisk AMI Gurus - Tacking issue with originate
Hello Everyone,
I am making a simple index.php file which will allow a web user to enter his
$phoneNumb, $dialNumb, and callerID ($spoofNumb) and get the call bridged.
Following is the index.php and the contents of extensions_custom.conf. When
I submit the form nothing happens. I don't even see Manager Connected msg.
Your input will be much appreciated. I am thinking I have some syntax
2012 Dec 12
1
Asterisk 11 originate errors
Hi,
I'm getting errors while originating a call through AMI.
[Dec 12 21:18:35] ERROR[8661]: utils.c:1236 ast_careful_fwrite: fwrite() returned error: Broken pipe
[Dec 12 21:18:35] ERROR[8661]: utils.c:1236 ast_careful_fwrite: fwrite() returned error: Broken pipe
[Dec 12 21:18:35] ERROR[8661]: utils.c:1236 ast_careful_fwrite: fwrite() returned error: Broken pipe
Asterisk version 11.0.1
2009 Dec 23
1
AMI originate and PHP
Hi Guys,
I am trying to make a web form where a person is allowed to put in
$phoneNumber, $dialNumber, and $spoofNumber to make a call with spoof caller
ID. There are a few problems that I am facing with Asterisk AMI Originate
command. The reason why I want to use the darn AMI Originate is because I am
sending calls to mobile phones and I want to have some accountability and to
know if a call was
2007 Oct 13
0
Set up two PSTN calls and then join them
I wish to set up two PSTN calls and then connect them similar to Jajah (is
this called 3pcc?). The PSTN interconnect is handled by a third party SIP
provider.
I can do this using the manager or call files. An example (using php) would
be:
fputs($oSocket, "Action: login\r\n");
fputs($oSocket, "Events: off\r\n");
fputs($oSocket, "Username: $strUser\r\n");
2009 Oct 02
0
Sending a DTMF remotely with PlayDTMF problem.
Hello,
I need to be able to send a DTMF to an existing channel remotely. So I made
a php script to do such with the Manager command PlayDTMF. I need it for
example to start a transfer.
isb177*CLI> features show
Builtin Feature Default Current
--------------- ------- -------
Pickup *8 *8
Blind Transfer # #8
Attended Transfer
2009 Oct 03
0
Problem sending a DTMF remotely. Please need help...
Hello,
I need to be able to send a DTMF to an existing channel remotely. So I made
a php script to do such with the Manager command PlayDTMF. I need it for
example to start a transfer.
isb177*CLI> features show
Builtin Feature Default Current
--------------- ------- -------
Pickup *8 *8
Blind Transfer # #8
Attended Transfer
2009 Oct 06
0
Problem sending a DTMF remotely. Please need help!!!
Hello, how are you?
I need to be able to send a DTMF to an existing channel remotely. So I made
a php script to do such with the Manager command PlayDTMF. I need it for
example to start a transfer.
isb177*CLI> features show
Builtin Feature Default Current
--------------- ------- -------
Pickup *8 *8
Blind Transfer # #8
Attended
2009 Oct 05
1
Problem sending a DTMF remotely. Please need help!!
Hello,
I need to be able to send a DTMF to an existing channel remotely. So I made
a php script to do such with the Manager command PlayDTMF. I need it for
example to start a transfer.
isb177*CLI> features show
Builtin Feature Default Current
--------------- ------- -------
Pickup *8 *8
Blind Transfer # #8
Attended Transfer
2013 Feb 23
0
click2call with AMI?
Hi,
I have a PHP code with AMI to using in click2call system.
here is my code:
$user = "usernamr";
$secret = "secret";
$channel = 'SIP/' . $sip;
$context = "from-internal";
$waitTime = "20";
$timeout = 20000;
$priority = "1";
$maxRetry = "2";
$pos = strpos($number,
2014 Mar 04
0
Anybody have issues joining machines to a S4 AD domain using VBS
All
got an issue I have a VBS that should join machines to the domain but it's
not working get access denied instantly
anybody got any working scripts they would like to share with me.
btw my script that doesn't work is below
' Join a Computer to a Domain
Const JOIN_DOMAIN = 1
Const ACCT_CREATE = 2
Const ACCT_DELETE = 4
Const WIN9X_UPGRADE = 16
Const DOMAIN_JOIN_IF_JOINED =
2005 Dec 28
2
PHP Manager
Hi all,
I have a small problem to execute Asterisk Commands in Asterisk
Manager using PHP.
I am able to run all Asterisk Manager command but the problem is
comming with asterisk command.
here is the code i am trying to run.
<?php
$socket = fsockopen("localhost","5038", $errno, $errstr, $timeout);
fputs($socket, "Action: Login\r\n");
fputs($socket,
2011 Aug 01
1
Problems with AMI connections (Asterisk 1.8.3.2)
Hi guys, I hope you could help me.
I am trying to get connected through AMI but something is not working. Both
php code and manager.conf were working well in asterisk 1.4
1. Sometimes it gets connected and sometimes it doesn't:
== Connect attempt from '192.168.25.241' unable to authenticate
== Connect attempt from '192.168.25.241' unable to authenticate
== Manager
2005 Jan 13
4
Manager API !!!!!!!!!
Hello all
Has anyone had any success with the Manager API ?
I am trying to check an extension status without too much luck I have
the following
<?php
$fp = fsockopen("127.0.0.1", 5038, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "Action: Login\r\n";
$out .=
2009 Oct 27
2
fsockopen-method in ROR
Hi,
PHP has ''fsockopen''-function to create a socket connection. With what
function I can create this connection in ROR?
Thanks im Advance
--
Posted via http://www.ruby-forum.com/.