Page 1 of 1

Set a paticular Extension for a VD conference .

PostPosted: Sat Oct 06, 2007 3:40 pm
by saqibali
can we set a paticular extension for a paticular VD conference ?
like now it gives available conference number to a paticular extension thats logon to vici but how can i predefined conference number to that extension.
like SIP/0235 extension gets conference number 8600051 whenever that login to vici .

PostPosted: Sun Oct 07, 2007 7:49 am
by mflorell
There is currently no way of do that at this time. The conferences are defined on a first-come first-served basis.

PostPosted: Tue Oct 09, 2007 1:55 pm
by saqibali
hmmm okie .....

as i changed my server ip and i am getting error when i try to run the
/usr/share/astguiclient/AST_conf_update.pl error is unknown remote host.
and also in server_updater table its not updating the server too ....

PostPosted: Tue Oct 09, 2007 2:47 pm
by faisal_ashraf
you need to change IP address in mysql asterisk database as well which you created during scratch install.

try mysqlyog or webbased phpmyadmin in order to change the ip address in database.

or if you are good in command line then you can do it from that.

Change IP Address on following tables

Table:
conferences
vicidial_conferences.
server_updater

PostPosted: Tue Oct 09, 2007 3:08 pm
by mflorell
There is a perl script to change the server ip in all tables:
ADMIN_update_server_ip.pl

PostPosted: Tue Oct 09, 2007 3:09 pm
by saqibali
thankzz faisal for the help and also we have to change the ip address in astguiclient.conf file ... as i changed the ip in all files you mentioned but forgot to change the ip in conf file but thankzz n e ways

PostPosted: Tue Oct 09, 2007 8:26 pm
by faisal_ashraf
mflorell wrote:There is a perl script to change the server ip in all tables:
ADMIN_update_server_ip.pl


Well i didn't knew that that will be the easier way to do it then :)

Re: Set a paticular Extension for a VD conference .

PostPosted: Tue Oct 30, 2007 12:40 am
by shawno
saqibali wrote:can we set a paticular extension for a paticular VD conference ?
like now it gives available conference number to a paticular extension thats logon to vici but how can i predefined conference number to that extension.
like SIP/0235 extension gets conference number 8600051 whenever that login to vici .


-- Bump --

Is this possible yet?

PostPosted: Wed Oct 31, 2007 10:33 pm
by mflorell
Nope. Have you submitted an issue to the tracker requesting this?

PostPosted: Sun Nov 11, 2007 6:23 pm
by shawno
mflorell wrote:Nope. Have you submitted an issue to the tracker requesting this?



I have now!

http://www.eflo.net/VICIDIALmantis/view.php?id=146[/url]

Workaround

PostPosted: Mon Jun 30, 2008 8:20 am
by Aspia
We solved the problem with multiple agents in same conferences by changing this line in vicidial.php:

#####$stmt="SELECT conf_exten FROM vicidial_conferences where server_ip = '$server_ip' and ((extension='') or (extension is null)) LIMIT 1;";
$stmt="SELECT conf_exten FROM vicidial_conferences where server_ip = '$server_ip' and ((extension='') or (extension is null)) and phone = $dialplan_number LIMIT 1;";
then we added the field ´phone´(agents dialplan_number) into vicidial_conferences. This solved the problem for us.