Posts Tagged ‘realtime billing’

Rates setting in asterbilling for asterisk billing

There are three rates in asterBilling, reseller rate, callshop rate and customer rate. reseller rate: the rate admin sell to reseller callshop rate (group rate): the rate reseller sell to callshop (group) customer rate: the rate callshop sell to customers Rates in asterBilling could be inherited, for example, here’s two records in resellerrate dialpreifx = [...]

Comments (3)

asterbilling hosted callshop solution for asterisk

asterBilling is a realtime billing software for asterisk. Through asterBilling, it’s very easy to build a hosted callshop solution for asterisk. benefits of asterBilling hosted callshop solution: reseller, callshop, customer three level billing all web based high performance all asterisk system compatible here, i’ll introduce u how to build a hosted callshop solution using asterisk [...]

Comments (11)

How to set asterBilling working with Freepbx, Trixbox, Elastix …

asterBilling is a realtime billing solution for asterisk, could be used as a hosted callshop or just a simple billing system for your asterisk pbx. Many people are using freepbx based system as their pbx, like trixbox, elastix … so here i’ll introduce you how to use asterBilling to bill your asterisk pbx. the first [...]

Comments (9)

using astercc and asterrc daemon to bill your asterisk

asterrc is a billing script in asterCC package, together with astercc, asterrc could provide you the realtime billing feature to your asterisk system. there’re some billing fields in table ‘curcdr’, they are `credit` : credit by customer rate (rates in table ‘myrate’) `callshopcredit`: credit by callshop (rates in table ‘callshoprate’) `resellercredit`: credit by reseller (rates [...]

Leave a Comment

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)

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)

What can we do through asterCC?

1. Intergrated with a CRM system, then you could start then development of your own call center asterCC could get live call messages from the asterisk, including src –> callerid dst –> calleeid srcchan –>  channel of the source dstchan  –> channel of the destination starttime –> time of the call start answertime –>  time [...]

Leave a Comment