Displaying 6 results from an estimated 6 matches for "conlog".
Did you mean:
conlon
2005 May 25
15
PHP/AGI Problem
Hi
I am currently developing a IVR application using
PHP/AGI. I am using the PHPAGI class at
http://phpagi.sourceforge.net/ to handle the
commuication with my *.
The application basically asks a caller to enter in
some information which is then processed and a answer
is read back out to them. I want the application to
loop back to the beginning after giving the answer so
they can try another
2009 Mar 01
1
php agi and get_data errors.
...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;
$agi->conlog(print_r($a, true));
}
// Prendo Badge
$isokbadge = false;
$tries = 1;
do {
$result = array();
$agi->exec('PLAYBACK',$audiofiles['insertbadge']);
$result = $agi->get_data('beep', 60000, 13);
printdebug($result);
$badge = str_replace('*', '.', $r...
2004 Jun 11
0
Problem with AGI
...global $agi;
global $response;
$agi = new AGI();
$response = $agi->agi_getdtmf(10,3000)
//$agi->conlog("Got response: $response");
?>
=============================
My extensions.conf:
;test sample php agi
exten => 2000,1,agi,testing_phpagi
===============================
The phpagi.php file is unaltered....
2004 Sep 18
2
Asterisk as an outbound call machine?
Hi All...
I have a need to phone a large number of people and collect information
from them. I know Asterisk has a nice IVR system, but can it be used to
initiate a call to people listed in a database or text file?
Don't worry, this is not an annoying marketing thing.
Thanks...
2010 Nov 20
0
AGI CDR Update (with set variable) problem.
...are both "0".
And this is the php scripts filed update part.
$agi->exec("set", "CDR(userfield)={$cost}");
$agi->exec("set", "CDR(rate)={$rateArray['data']}");
$agi->exec("set", "CDR(cost)={$cost}");
$agi->conlog(">>>>>>>>>>>>>>>>cost:". $cost);
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20101120/f7c498e4/attachment.htm
2006 Aug 08
1
Client/server test harness - Crucible 1.6
...esting of non-kernel components
* Bunch of cleanup and bug fixes
* New features 'delete' and 'requeue' for the 'testrun' tool, for
administrative control over problematic test runs.
* New features 'lnimage', 'lsimage', 'mkimage', 'conlog', and 'power'
to 'sut' tool. These allow easy, uniform access to functionality
in systemimager, conserver, and the remote power management tools.
* Test plan commands have been converted into regular bash scripts.
This makes customization of Crucible quite st...