similar to: How to install PHPAGI?

Displaying 20 results from an estimated 2000 matches similar to: "How to install PHPAGI?"

2007 Jan 15
1
phpagi transfer example
Hi, i want to to this thing with php AGI: #!/usr/local/bin/php -q <?php set_time_limit(30); require('phpagi.php'); error_reporting(E_ALL); $agi = new AGI(); $agi->answer(); $cid = $agi->parse_callerid(); $agi->text2wav("Hello, {$cid['name']}."); $agi->text2wav('Enter some numbers and then press the pound key. Press 1 1 1 followed by the pound key
2006 Jan 13
4
PHPAGI daemon/background task?
I have a script that I want to leave running in the background to handle specific manager events. I'm running into a problem where it gets stuck in the wait_response function in phpagi-asmanager.php and the PHP maximum execute timeout kills the script. The script doesn't interact with the dialplan, so I cannot launch it from within Asterisk. Any pointers would be appreciated. I did
2007 Feb 12
1
phpagi - Event "On Hangup"
Do you know if it is possible to handle some events with phpagi? For example: On hangup (doesn't care if by caller or by asterisk) do something.... Thanks
2008 Mar 19
3
phpagi
Hello, How do I install phpagi? http://phpagi.sourceforge.net/ I couldn't find any info about setup in that site, and I couldn't email the developers.so I'm lost. I know it isn't a real question for this list, but I suppose many people here already have installed it. So, how can I install it? Thanks Carlos -------------- next part -------------- An HTML
2005 Aug 08
1
Found solution to my PHP AGI Script problem...
Dear Moises Silva, Chris Thompson and others, I've finally managed to find the problem with my PHP AGI script! Apparently, my machine has 2 versions of PHP installed. One for CGI and the other for CLI. Without knowing, to hand test my script I was calling the CLI version (/usr/local/bin/php), whereas Asterisk was calling the CGI version (/usr/bin/php). It turns out that my script
2010 May 14
1
is my PHPAGI Soap code right?
Hello, i try to use soap in the phpagi. i want to call a function from a web service when a user call a telephne failed. this is my phpagi script, Could you show me what's wrong ? becasue i can't excute it successfully. please open the following url to see my code: http://pastebin.com/uzvWSxPy Thanks! -- Thanks for your supporting, have a nice day. Sucan
2009 Aug 18
1
Play Fake ring in phpagi
> I'm going blind searching - maybe you know? > > During the execution of a script I want to play fake ring to caller. > Both of these examples complain of missing option: > > $agi->exec("Ringing"); > $agi->exec("Playtones ring"); > > Notice: Undefined variable: options in > /var/lib/asterisk/agi-bin/includes/phpagi.php on line 326
2005 Jun 29
1
Problems connecting to and from my Asterisk server :(
Hello there, I'm a new Asterisk user and I'm having difficulties to connect to and from my Asterisk server. Can anybody give me a hand? Here's some background information: * I'm running RedHat Linux Enterprise 4.0 * When iptables is stopped, my server can register with IAX service providers and receive registrations from IAX softphones. However, it does not succeed in
2007 Jun 19
2
PhpAgi call generation
hi i'd like to write a simply application in php with phpAgi that: - connect to Asterisk - call an external number using a Zap channel - play a message here is some code: <?php $asm = new AGI_AsteriskManager(); if ($asm->connect()) { $asm->Originate("Zap/g1/1","number","default","1"); /* play message... */ } else {
2016 Aug 10
2
Replacement for phpagi?
Anyone know a good replacement for phpagi? Unfortunately development stalled long ago and it has not been updated. What is the best solution for AMI and AGI on PHP? Thanks. -- Telecomunicaciones Abiertas de M?xico S.A. de C.V. Carlos Ch?vez +52 (55)9116-91161
2005 May 24
3
PHPAGI problems
Hi Here is part of my extensions.conf exten => 8661231234,1,agi,dtmf.php When I dial this number, this is what I see in my asterisk console: -- Accepting AUTHENTICATED call from 198.22.67.70: > requested format = gsm, > requested prefs = (), > actual format = gsm, > host prefs = (gsm|ilbc|speex), > priority = mine -- Executing
2008 Jan 18
2
SAY TIME + PHPAGI + Timezone
Hello All, Is there any way to change the timezone on the fly? I have this little time clock program running on Asterisk system developed using PHPAGI. Currently, whenever user logs in, Asterisk will prompt the current system time using "$agi->say_time();" which executes "SAY TIME". Now the current timezone set on the system is "PST", and I have a request to
2005 Jul 02
1
Is it possible to setup group voicemail in Asterisk?
Hello there, I'm a new Asterisk user and I wonder if it is possible to associate a voicemail box with a group of users, i.e., a single recorded message is sent to everyone in that group. If so, where can I find more information about that? Thanks in advance, Leo Burd
2010 Apr 04
1
[OT] phpagi help
Hi, I am attempting to connect to the blacklist database using PHPAgi and it always seems to hang. The code snippet I am trying is: $r = $agi->get_variable("CALLERID(num)"); $cidnum = $r["data"]; if ($cidnum < 1000000000) # No valid callerid. { exit(0); } $r = $agi->database_get("blacklist", "$cidnum"); if ($r["result"] ==
2013 Apr 17
1
Phpagi action based on outbound call user response
Hello List, In PHPAGI, I'm using the Astrisk Manager function send_request() to originate an outbound call. I want to execute the remaining PHP code after the call gets executed (depending on user input). But presently the call originates in a different context and asterisk executes the remaining code in parallel. Is there a way in which I can pause the code execution until the call is
2005 Aug 08
2
URGENT: Problems with PHP AGI...
Hello everyone, I'm having all sorts of problems with my PHP AGI scripts... Basically, my scripts run fine from the command line and don't do anything well called from Asterisk. Here are my questions: a) Does Asterisk require PHP CLI or CGI? From the command line, my script seems to work fine with PHP 4.3.11 (cli) but not with PHP 4.3.9 (cgi) b) How to debug my script? According
2008 Oct 05
5
asterisk, phpagi and singleton
Hello, I've this situation: 300+ simultaneous calls and dialplan like this: exten => _X.,1,Answer() exten => _X.,2,DEADAGI(check_status.php) exten => _X.,3,Dial(SIP/other/${NUMBER}) exten => _X.,4,Hangup exten => h,1,DEADAGI(cdr.php) When project is running , I had a lot of defunct php scripts (I've exceed mysql connection limits and so on, deadagi help a bit). The
2005 Oct 13
1
AGI Variable problem
Hello all, I try to use a agi script to get a variable from * und put them into a script which gives me another variablke and put this in *. My problem is now it seems the var ID is empty coz i always jump into the result 0 loop. The $MSN should be in the SetCIDNum. #!/usr/bin/php -q <?php include("/var/lib/asterisk/agi-bin/phpagi.php"); $agi = new AGI(); $ID =
2005 Jun 09
1
PHPAGI Swift Escape Digits
I am trying to use swift in PHP/AGI. function swift($text, $escape_digits='', $frequency=8000, $voice=NULL, $fnameIn='') During swift speaking some text I want the caller to be able to press 1, 2 or 3 to do thing 1, thing 2 or thing 3. How are these digit defines and then caught? Thanks, Michael
2006 Jan 17
2
auto load SIP peers on startup
Hi all, we use OpenSER together with Asterisk. All SIP users registers with OpenSER and asterisk is doing the voicemail thing. We use the Asterisk RealtimeArchitecture for voicemail users and SIP peers. The database table for the sip peers is a view from the OpenSER subscriber table. The MWI for a user will only work, if the user object (sip peer) is loaded into memory and visible with the CLI