Posts Tagged ‘asterBilling’

how to update asterCC license for your asterisk

By default, astercc providers you 5 free simultaneous channels license, you can purchase more if need. First, edit /opt/asterisk/scripts/astercc/astercc.conf which is in same folder with astercc daemons, go to section [licence], you can find three parameters there [licence] licenceto = key = (no this parameter in current version now) channel = 5 change “channel” to [...]

Comments (11)

History about asterCC, asterCRM and asterBilling

In July, 2007, we start a project, the aim is to provide a call center system for asterisk, which should be all web based and no rely on dialplan, also should have some simple CRM features. That’s how asterCRM came, we made it all open source and free to use so that it could grow [...]

Comments (1)

add language package for asterCRM & asterBilling

For now asterCRM provides user two languages, English and Simplified Chinese, if you want to add a new language, follow this article you can make it yourself. say you want to add German to astercrm, first go to astercrm/login.php and find the following lines: <OPTION value=”en_US”>English</OPTION> <OPTION value=”cn_ZH”>简体中文</OPTION> we use de_GER for German so we [...]

Leave a Comment

Install asterBilling on your server

Download and unzip the source cd /var/www/html wget http://voxel.dl.sourceforge.net/sourceforge/astercc/astercc-0.09beta.zip unzip astercc-0.09beta.zip mv astercc-0.09beta astercc Create the directories and move astercc daemon scripts: mkdir -p /opt/asterisk/scripts/astercc/ mv /var/www/html/astercc/daemons/* /opt/asterisk/scripts/astercc/ chmod +x /opt/asterisk/scripts/astercc/astercc chmod +x /opt/asterisk/scripts/astercc/asterrc chmod +x /opt/asterisk/scripts/astercc/asterccd Create the MySQL database and table, asterCC need mysql 4.1 or above mysqladmin -uyourmysqluser -pyourmysqlpasswd create astercc mysql [...]

Comments (25)