similar to: RE: Asterisk-Users] IVR Questions?

Displaying 20 results from an estimated 5000 matches similar to: "RE: Asterisk-Users] IVR Questions?"

2006 Nov 29
0
Re: asterisk-users Digest, Vol 28, Issue 152
asterisk-users-request@lists.digium.com wrote: > Send asterisk-users mailing list submissions to > asterisk-users@lists.digium.com > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.digium.com/mailman/listinfo/asterisk-users > or, via email, send a message with subject or body 'help' to > asterisk-users-request@lists.digium.com > >
2006 Dec 21
1
Re: Match a Numer - then continue with, dialplan
> -----Original Message----- > From: Richard Lyman [mailto:pchammer@dynx.net] > Sent: Wednesday, December 20, 2006 4:29 PM > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: Re: [asterisk-users] Re: Match a Numer - then continue with, > dialplan > > > Douglas Garstang wrote: > >> -----Original Message----- > >> From: David
2003 Dec 31
1
AGI - IVR - Time Clock
I wanted to post the beginings of my latest IVR Project for an automated Time Clock software. The customer has over 300 Field Reps that call in everytime they arrive on location and whey they leave that location. This is handled by the receptionist now and she logs in them and out of there Time Clock Software. Which takes up majority of her day. The customer has requested a automated way of
2006 Dec 20
0
Re: Match a Numer - then continue with, dialplan
> -----Original Message----- > From: Richard Lyman [mailto:pchammer@dynx.net] > Sent: Wednesday, December 20, 2006 4:29 PM > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: Re: [asterisk-users] Re: Match a Numer - then continue with, > dialplan > > > Douglas Garstang wrote: > >> -----Original Message----- > >> From: David
2007 Jul 23
0
Problem w/ MySQL update from perl AGI script
I've been trying to get a basic 5 question IVR survey working in an AGI script, and am having trouble with the SQL portion not updating the table. When I take out all the AGI references, and run just the perl script, the table updates with no problem(DBname,username,password have been substituted in this example for the actual values): #!/usr/bin/perl # # use DBI; $DATETIME =
2003 Nov 27
1
AGI (IF/ELSE)
I need some help with some statements..... #!/usr/bin/perl use Asterisk::AGI; $AGI = new Asterisk::AGI; my %input = $AGI->ReadParse(); my $callerid = $input{'callerid'}; if ($optemp != 1) { my $empid = $AGI->get_data('employee',-1,5); $AGI->stream_file(entered); $AGI->say_digits($empid); my $optemp =
2004 Oct 05
5
Asterisk Perl AGI
Hello everybody: This could be a stupid question, or may be not; I'm not sure 'cause I have not a very wide experience working with Asterisk, actually I just started last week. I need to make an IVR system work and I choose working with AGIs, written in Perl. The available documentation I've found show it as a very simple proccess, but it doesn't work for me... and I
2008 Jul 23
3
Trouble Playing message file via Perl AGI
Hi all, I'm trying to build an IVR using the Perl AGI module at http://search.cpan.org/~jamesgol/asterisk-perl-0.10/lib/Asterisk/AGI.pm But, I'm having trouble getting my program to play a message and wait for a keystroke. I am able to use this code to play the file, so I know that the $msg variable points to a valid sound file: $result = $agi->exec("background $msg");
2005 Jan 10
1
Agent Status on FOP
The hype and documentation for the last couple of releases of the Flash Operator Panel claim that the Panel can be configured to either change the LED for a phone, or the name of a phone to indicate when that phone is logged into a queue. I've tried on two different versions (0.18 and 0.19) on two different systems to get this feature to work, and have been completely unsuccessful. Any hints
2004 Apr 18
0
AGI Module
Hey all, I'm sorry to bother you with something so trivial, but I seem to be having an issue with the Asterisk::AGI module. I am a relative newbie with Perl so it could be a stupid syntax mistake that I missed. It seems when I try to execute either the stream_file or the get_data subs nothing is actually done. It doesn't seem to stream the files, but on the console it says it played the
2004 May 07
1
meetme conf-background.agi
Hello there! Somebody tried the meetme|b which initiates the conf-background AGI. Actually I want to originate another call from a conference.my AGI originates the call and connects it to the conference, but the calleeee is nowhere My extension exten => 21,1,meetme(21|pb) and my AGI **************************************************************************** #!/usr/bin/perl -w
2008 Feb 04
8
AGI: Not getting answers from get_data in a call-file call
I have the following situation: I drop a call-file into the Asterisk spool directory and I get called back. That all works. And I have this script: #!/usr/bin/perl -w use Asterisk::AGI; my $AGI = new Asterisk::AGI; my %input = $AGI->ReadParse(); $AGI->answer(); my $i; $i = $AGI->channel_status(); $AGI->say_digits($i); $i =
2004 Sep 20
0
Can't Dial using perl.
I'm trying to dial using this script in perl: (asterisk_dial.pl) --- #!/usr/bin/perl use Asterisk::AGI; $AGI = new Asterisk::AGI; my %input = $AGI->ReadParse(); $pin = $AGI->get_data("beep", "10000", "3"); chomp($pin); $AGI->exec('SetVar',"NUMERO=$pin"); exit(0); --- This script sets 'NUMERO' with any value... In my
2005 Oct 05
1
Caching DTMF tones for get_data AGI?
I'm using get_data in an AGI script and am having a problem when, after a long time in my IVR, when I ask for a 10-digit phone number, the first few tries are always invalid -- the number it reads back is very strange, almost like the DTMF tones from other answers were being cached and then dumped on the call to get_data. Anyone ever experienced this before? I have to do some major
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
2003 Oct 05
1
IVR Questions?
I'm fairly new to Asterisk, but I've been searching the archives extensively and haven't seen much information on using IVR for more than menus. I'd like to prompt a caller to enter his ID (employee, customer, account, etc). The business use I have in mind requires a five-digit ID. Then I need to be able to capture the ID entered, validate it (probably by playing it back with
2016 Jul 05
1
GPFS AFM Export Problem
Hi All, I'm having a frustrating time exporting a GPFS Independent Writer AFM fileset through Samba. Native GPFS directories exported through Samba seem to work properly, but when creating an export which points to an AFM IW fileset, I get "Access Denied" errors when trying to create files from an SMB client and even more unusual "Failed to enumerate objects in the container:
2003 Dec 15
3
Nagios/measurement with Asterisk - any plugins?
I have spent some time digging through the archives for comments concerning Asterisk and monitoring systems, and I have found few results. check_asterisk.pl.gz (http://www.dynx.net/ASTERISK/misc-progs/) which gives an error on download, and has no further Google references astping.tar (http://www.dynx.net/ASTERISK/misc-progs/ and also in the mailing list archives) supposedly sends a query to
2004 Feb 02
0
Re: how to dial and accept a call with only
Dear Joe Dennick, and all group members, Could you give me more detail instruction to place a call from an outside line (or cell phone) through the * to voicemail or the demos to prove that the system works. Actually, I need to prove if system works or not. Then I can get money to do next step. Thank you a lot. Michael From: "Joe Dennick" <joe@dennick.net> To:
2004 Feb 02
0
Re: how to dial and accept a call with only
sounds like you need to do some reading at the many fine resources available. start at http://www.voip-info.org. Here's a hint for you though.... exten => s,1,Answer exten => s,2,VoicemailMain Barring that, just run 'make samples' which will create a wonderful set of sample config files which will allow you to test the system out pretty thoroughly.... Sean -----Original