similar to: AGI Que "Say Time"

Displaying 20 results from an estimated 10000 matches similar to: "AGI Que "Say Time""

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
2008 Feb 22
2
AGI / Voicemail Que
Hello All, I have my own AGI script running and I am trying to push the call to voice mail when Busy, Unavailable and Not Answered. Everything is working fine but the only problem is voice mail greetings for Busy and Unavailable is not played. By default only "Temp Greetings" voice mail greetings is played. I am passing the correct parameters for Busy => 'b', Unavailable
2007 May 23
16
WiFi SIP phones
Greetings list, What are people's experiences with WiFi SIP phones? When I last looked into them about 18 months ago, they were incredibly expensive, had very limited range and poor battery life. In the end, it worked out much more cost effective to simply use ATAs + DECT cordless phones where there was a requirement for portable devices. I assume things must have moved on somewhat since
2007 Aug 11
1
LumenVox Speech Recognition
Hello All, While looking for solution to solve my Callback DTMF problem, I came across LumenVox Speech Recognition software. Has anyone tried out? Need some feedback before I purchase it... Please help... Cheers, Nitesh
2005 Jul 18
5
TDM04B - Takes long to initialize...
Hello All, I got my TDM04B card installed and configured. Everything works fine I can receive calls and route to appropriate extensions. The only problem I am facing is Slowness. When I dial the PSTN number which is connected to Zap 1-1 after two ring it answers and then run the AGI script. What I did was assign it to a specific extension. So all inbound call on that PSTN number should
2007 Jun 27
2
Error While Calling AGI
Hello All, Found some strange problem while Asterisk trying to call the AGI file. If I pick up the call on the first attempt, it will execute my AGI file properly. But if I don't pick up the call and let Asterisk call me again, it adds StartRetry next to my AGI file name. Which will cause the AGI to fail to execute. -- Attempting call on SIP/5181 for application AGI(recordvoice.php)
2007 Aug 29
1
Monitor System using AGI Scripts
Hello All, Anyone using AGI scripts to monitor their systems? Something like if the system goes down, AGI script will be triggered and system admin will be notified saying "System XYZ has gone down"... Any suggestions... Cheers, Nitesh
2005 Mar 26
5
Click-to-Talk with Asterisk?
Hi Nitesh, Take a look at this http://www.microappliances.com/site/html/index.php?section=Products&page =clienthowto.php I've never implemented it though so I would appreciate some feedback on if it works. Cheers, Dean -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Nitesh Divecha Sent: Saturday,
2004 Jun 11
0
Problem with AGI
Hi, I am trying to use the WAIT FOR DIGIT command with the phpagi class phpagi.php. When I run the file testing_phpagi.php which creates an instace of the phpagi class and calls the agi cmd, from command line, it runs fine without any parse errors. I can also iterate thru the VERBOSE, WAIT FOR DIGIT etc commands as I run the testing_phpagi.php file from the command line. However, when I dial
2007 Jun 20
1
Asterisk RealTime
Hello All, I manage to configure Asterisk RealTime and now it loads the SIP users/peers from MySQL DB. The table I am using is of A2Billing DB "cc_sip_buddies". Now the only problem I am facing is incoming calls are failing... The ATA which is assigned this DID number is behind NAT and according to Olle's explanations he said "*there's no support for NAT keep-alives
2007 Jun 24
3
Nokia N95 + Dial Plan
Hello All, Recently I added some Nokia N95 customers and it worked pretty good. Now the customers are complaining about the dialing rules... They are used to dialing +12486543210 and +4479XXXXXX for long distance calls. Is there anyway to create a "+" sign dial plan which will allow them to dial a number with "+" sign. Cheers, Nitesh
2005 Feb 23
4
Vonage <---> Asterisk Working Config!
Hi Nitesh, check out my config that I have for the Faktortel config in the asterisk@home sourceforge forum, you'll probably be able to work out how to set it up from there. Cheers, Dean -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Nitesh Divecha Sent: Wednesday, February 23, 2005 4:12 PM To:
2007 Jun 14
4
Que on A2Billing
Hello All, I got one quick question on A2Billing. Specs: - - A2Billing v1.3 - OS CentOS 4.5 - Asterisk 1.2 - Zaptel 1.2 Did the installation and everything is working as it suppose to... Using the A2Billing documentation, I created the RateCard, SIP Trunks, and SIP Customers. I was also able to login using XLite Dialer and was able to call out to my SIP Trunk also. Now how can I remove the
2011 Feb 24
1
missing argument on AGI
Hi All, I'm using the asterisk 1.4.39.2 with phpagi 2.20 I have setup a dial plan: [callback-outbound] exten => _00.,1,Macro(callout|${EXTEN}) [macro-callout] exten => s,1,AGI(getchannel.php|${ARG1}) exten => s,2,Dial(Local/${OUTBOUND}@from-internal/nj||tr) exten => s,3,Hangup() but for some reason i am not receiving the argument: Executing [s at macro-callout:2]
2006 Dec 27
1
php agi trixbox help
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. When I call the 311 extension, I does nothing then hangs up. What am I doing wrong?? ----php code------------ #!/usr/local/bin/php -q <?php set_time_limit(30); require('phpagi.php'); $agi = new AGI(); $agi->answer(); $cid =
2009 Sep 02
0
problem with agi script not getting variable
I am learning agi scripting using php. I m using phpagi 2.x on asterisk 1.2. I hve written a simple script that reads out the callerid using flite. My problem is that I seems the script is not getting the callerID. Bellow is the script _________________ #!/usr/bin/php -q <?php /** * @package phpAGI_examples * @version 2.0 */ set_time_limit(30);
2009 Mar 01
1
php agi and get_data errors.
Hallo, I'm using a self-made script to get the code a user enters on my applications. Sadly, the code doesn't work, i push the digits, but the result is always an empty data. (code=200, result=1, data= ''). Here is the code: set_time_limit(99999999999999); require('phpagi.php'); $agi = new AGI(); $agi->answer(); function printdebug($a) { global $agi;
2007 Jul 19
2
Upgrade Procedure
Hello All, I would like to upgrade my recently installed Asterisk 1.2.21.1 to Asterisk 1.4.8? My OS is CentOS 4.5 with Linux 2.6.9-55.0.2.plus.c4smp #1 SMP Fri Jul 6 05:25:07 EDT 2007 i686 i686 i386 GNU/Linux Is there any detail step by step procedure to uninstall the current version and install Asterisk 1.4.8, Zaptel 1.4.4, Libpri 1.4.1, Addons 1.4.2? Cheers, Nitesh
2014 Sep 23
2
read digits from the user through php agi script
hi everyone, actually i want to release an IVR system using PHPAGI API , in this IVR i want to get value from the user. I already used get_data defined in phpagi but they are not able to get the value given by the user and store it in a php variable. i tested this : $result = $agi->get_data('beep', 3000, 20); $keys = $result['result']; but every time i found in $keys variable
2006 Nov 02
1
AGI Problems
Hi, I've got a setup whereby calls come into the asterisk server (1.2.7.1) over a IAX2 trunk and into a dialplan that launches a php AGI script: [live-full] exten => _X.,1,Set(TIMEOUT(absolute)=0) exten => _X.,2,NoOp(${EXTEN}) exten => _X.,3,DEADAGI(live-full.php) exten => _X.,4,Wait,2 exten => _X.,5,Hangup The script is using phpagi-2 from http://phpagi.sourceforge.net/ and