----- Original Message -----
From: "SourceForge.net" <noreply-pyega4qmqnRoyOMFzWx49A@xxxxxxxxxxxxxxxx>
To: <noreply-pyega4qmqnRoyOMFzWx49A@xxxxxxxxxxxxxxxx>
Sent: Saturday, April 15, 2006 8:11 PM
Subject: [asteriskathome - Help] RE: queues in 2.8
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=3688737
By: d127001
Both of these work fine for me.
In extensions_additional.conf, I changed the playback lines to read:
exten => 110,n,Playback(custom/None)
Saved, then re-read config changes and it worked.
Once I resubmitted the queue, it broke it again.
Then in /var/www/html/admin/modules/queues/functions.inc.php
I found the line with $addarray
= array('ext-queues',$account,'4','Playback',$joinannounce,'','0');
And I added right before it:
if (!empty($joinannounce) && $joinannounce != 'None')
{
And After
legacy_extensions_add($addarray);
I added }
So the output from before $addarray =
array('ext-queues',$account,'4','Playback',$joinannounce,'','0');
is changed to:
if (!empty($joinannounce) && $joinannounce != 'None')
{
$addarray
= array('ext-queues',$account,'4','Playback',$joinannounce,'','0');
legacy_extensions_add($addarray);
}
Saved the file, resaved the queue and it omitted the Playback line and it
rings
the phone.
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=420324
__________ NOD32 1.1490 (20060415) Information __________
This message was checked by NOD32 antivirus system.
http://www.eset.com
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
|