similar to: Manual Call Transfer // Perl // Asterisk::AGI // MySQL

Displaying 20 results from an estimated 3000 matches similar to: "Manual Call Transfer // Perl // Asterisk::AGI // MySQL"

2011 Feb 09
0
Manual Call Transfer (Perl, Asterisk::AGI, MySQL)
Hello Everyone! I've hit a bit of a roadblock and I am hoping that someone might point me in the right direction. I am using Asterisk 1.2.4 - I do not have the option of updating it, please do not waste your time telling me to =) I am using PERL AGI scripts to maintain an "active calls count" field for each phone in a mysql database table, for example (not actual code, just trying
2009 Jul 22
0
Attended transfer and 'pbx-invalid' - 1.4.26
Hi, I've created a tiny dialplan to test the return of a call on transfers, like this: (I had to use the DEVSTATE backport here) [phones] exten => _12XX,1,Dial(SIP/${EXTEN},6,tT) exten => _12XX,n,GotoIf($[ "x${BLINDTRANSFER}" = "x" ]?noBT) exten => _12XX,n,Set(DIALRET=${CUT(BLINDTRANSFER,-,1)}); exten => _12XX,n,Goto(dRet) exten => _12XX,n(noBT),GotoIf($[
2011 Jan 14
1
Ghost ringing
We are having the strangest issue that I have seen for some time. A customer of ours with Polycom phones (4x ip335, 2x ip550) will occasionally (maybe 1 in 50 calls) hear ringing on the line along with the other party. It has happened on both incoming and outgoing calls across apparently all of the phones. We use ip550 in our office with Asterisk and have never had such a problem (we run the same
2012 Dec 12
1
Polycom phones and ring no answer/302 Moved Temporarily
I have several Polycom IP550 phones running UC 4.0.3, connected to Asterisk 1.8. Setting forwarding for "Always" works as expected; the phone issues a 302 Moved Temporarily, and Asterisk shifts the call to the new location. Setting forwarding to "No Answer" means a 302 never gets issued. It just rings and eventually goes to voicemail. Watching with Wireshark, I never see a
2011 May 09
3
Really, really loud ringers
Anyone have some recommended equipment for alerting people to calls in a noisy environment? I have Polycom IP550 phones set up in some really noisy environments - our mine hoists - and they tend to drown out the ringers. I'm using Clarity WR100s now. They're analog devices, attached to Linksys PAP2T ATAs as part of a call group to get a loud (advertised as 95dB) ring out there, but it
2017 Jan 16
1
Centos 7 dhcpd failure to allow a 2nd network over same interal nic
On 16/01/17 21:54, John R Pierce wrote: > On 1/16/2017 12:44 AM, Rob Kampen wrote: >>> >> Here's an idea - untested. >> set up a network on the single nic - say 192.168.55.xx/24 >> set up the dhcp to offer leases from a subset of this network - say >> 192.168.55.128/28 >> set up fixed leases based upon mac address from the remainder of the >>
2004 May 12
1
summary table newbie question
I've got a newbie question and I got a little lost in the "table helps". I've got a data.frame I would like to summarize as a (and pardon for the lack of correct vernacular) data collection matrix. My data looks like, stand siteindex age acres pct.acres 1 232 116 45 8477.3105 0.56159458 2 234 121 25 11120.1530 0.73667441 3 235 132 25
2007 Jan 10
0
[LLVMdev] Pattern matching questions
Chris Lattner wrote: >>It is possible to write multi-instruction pattern, e.g. >>X86InstrSSE.td line 1911. But how are you defining HI16 and LO16? >>Sounds like you want to define them as SDNodeXform that returns upper >>and lower 16 bits respectively. Take a look at PSxLDQ_imm in >>X86InstrSSE.td as an example. > > > Another good example is the PPC
2004 Aug 24
0
Perl AGI - no output from agi script to Aste risk
print to standard error output in your perl script: print STDERR "This is how perl-AGI prints to Asterisk CLI output\n"; MATT--- -----Original Message----- From: Robert Rozman [mailto:rozman@fri.uni-lj.si] Sent: Tuesday, August 24, 2004 8:01 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [Asterisk-Users] Perl AGI - no output from agi script to Asterisk Hi,
2006 Nov 15
0
Anyone using the directory.agi app in AGI perl
Just wondering if anyone is using the directory.agi app in AGI perl, I can't seem to get the searching function working. It lists my contacts but when I type in digits it say no match found. Thanks -- Tom Vile -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20061115/6c13642b/attachment.htm
2017 Nov 02
0
SamplingStrata R package
Hi all I am hoping to use the SamplingStrata R package for a dataset describing a population of businesses wherein I have information on the type of business, as well as, for designated employment number bands, number of employees and business turnover information. So ideally the stratification will be business type X business size. I am not 100% sure what "domains" (in the vernacular
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 =
2009 Apr 08
1
Perl AGI
Hi all, I have the below peace of my AGI script...the problem here is that I cannot fetch the extension value to inside the script and assign it to another variable...I highlighted it in red #!/usr/bin/perl #use DBD::mysql; use DBI; use DBD::mysql; use Asterisk::AGI; ############################ #To read asterisk variable values. $AGI = new Asterisk::AGI; my %input = $AGI->ReadParse();
2004 Dec 10
0
AGI Perl
Hello, I'm writing a AGI Perl script and use the following lines to initiate a call : $res = $AGI->exec("DIAL $dialstr"); And then : $answeredtime = $AGI->get_variable("ANSWEREDTIME"); The problem is that I need to know immediately when the call has begun. I can have the call duration & establishment time at the end of the call but not in real time when it
2004 Dec 28
0
Two problems with the Perl AGI
Hi, I have a * 1.0.3 running on a Gentoo box and I installed Perl AGi from http://asterisk.gnuinter.net/files/asterisk-perl-0.08.tar.gz. When I write this : >#!/usr/bin/perl >use Asterisk::AGI; >my $AGI = new Asterisk::AGI; >$AGI->exec ('Dial SIP/kphone1|30|tTr'); >my $duration = $AGI->get_variable('ANSWEREDTIME'); >print STDERR "\n duration :
2005 May 30
0
perl agi : get_variable problem
Hi, I'm developping some AGI in perl (5.8.6) on i386 using Asterisk 1.0.5. I want to get some variables such as DIALSTATUS and ANSWEREDTIME after a $AGI->exec("Dial", "dial_string"); but here is what i get actually: DIALSTATUS= DIALEDTIME=ANSWER ANSWEREDTIME=18 I searched the archives and saw that $AGI->verbose could mess the access to variables, but I don't use
2005 Jul 12
1
how to debug perl agi
hello i am trying to develop perl application for asterisk with radius accounting how can i debug that weather callback is working when call is stoped. how can i check this syslog('info', 'hello Asterisk!'); thanks Kamran ____________________________________________________ Sell on Yahoo! Auctions ? no fees. Bid on great items. http://auctions.yahoo.com/
2005 Jul 13
0
how to connect to asterisk via perl agi
hello i am getting this error while trying to run ast-rad-acc.pl my $ast_connected = 1; while( 1 ) { if( $astman->connect ) { $ast_connected = 1; syslog('info', 'Connected to Asterisk!'); $astman->setcallback('DEFAULT', \&status_callback); eval { $astman->eventloop; }; print STDERR "Connected To Asterisk\n"; } else {
2005 Jul 16
0
why $cdr{'CALLERID'} and $cdr{'DNID'} are empty in perl agi with asterisk manager
hello i am using ast-rad-acc.pl from portaone connected with asterisk manager. my (%cdr) = @_; $cdr{'CALLERID'}, $cdr{'DNID'}, these are empty why these two variables are not working on hangup any comments thanks Kamran Ahamd __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around
2005 Jul 26
1
Perl AGI
I am wondering if anyone can help me figure out how to do something. I'm running a simple perl AGI which at the end of the call, creates a MySQL row with some of the tasks done during the AGI session. However, when the call is unexpectedly dropped (possibly the caller hangs up before finishing the entire AGI flow), I don't get the MySQL row created. I'm wondering if there is