Hi Matt,
I installed vicidial from scratch. By the way, i can't see any activity in the asterisk 1.8 cli whenever i login as agent.
- installed asterisk 1.8.3.3
- downloaded and installed vicidial 2.7rc
- created the database
- run the sql files to import data
- configured /etc/astguiclient.conf
Asterisk 1.8 CLI:
"
== Manager 'sendcron' logged on from 127.0.0.1
== Manager 'sendcron' logged off from 127.0.0.1
== Manager 'sendcron' logged on from 127.0.0.1
== Manager 'sendcron' logged on from 127.0.0.1
== Manager 'sendcron' logged off from 127.0.0.1
vicidial27rc*CLI>
"
my installation of vicidial:
#download and install vicidial
mkdir /usr/src/astguiclient
cd /usr/src/astguiclient
wget -O astguiclient_2.7rc1.zip
http://sourceforge.net/projects/astguic ... p/downloadunzip astguiclient_2.7rc1.zip
perl install.pl
#change webroot to /var/www
#choose yes for samples (y)
#change the password of cron
#change asterisk version 1.8
#download and copy the gsm file
cd /var/lib/asterisk/sounds
wget
http://astguiclient.sf.net/conf.gsmcp conf.gsm park.gsm
#create the database of vicidial and import some data
mysql -u root -p
CREATE DATABASE `asterisk` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
GRANT SELECT,INSERT,UPDATE,DELETE,LOCK TABLES on asterisk.* TO cron@'%' IDENTIFIED BY '1234';
GRANT SELECT,INSERT,UPDATE,DELETE,LOCK TABLES on asterisk.* TO cron@localhost IDENTIFIED BY '1234';
GRANT RELOAD ON *.* TO cron@'%';
GRANT RELOAD ON *.* TO cron@localhost;
flush privileges;
SET GLOBAL connect_timeout=60;
use asterisk;
\. /usr/src/astguiclient/extras/MySQL_AST_CREATE_tables.sql
\. /usr/src/astguiclient/extras/sip-iax_phones.sql
\. /usr/src/astguiclient/extras/first_server_install.sql
quit
#import some data in your vicidial
/usr/share/astguiclient/ADMIN_area_code_populate.pl
cp /usr/src/astguiclient/extras/performance_test_leads.txt /usr/share/astguiclient/LEADS_IN/
/usr/share/astguiclient/VICIDIAL_IN_new_leads_file.pl --forcelistid=107 --forcephonecode=1
Regards,
Lui