Posts Tagged ‘billing’

Why I cant see some records in CDR page in my asterBilling?

sometimes when you go CDR page to check CDRs for resellers, groups or some clid in your system, but nothing there or some records missed, and then u go database and checked, find there’s data in cdr table “mycdr”, so why it’s missed in asterBilling interface?
Reason 1: historyCdr issue
check your asterbilling.conf.php in asterbilling web scripts [...]

Comments (2)

adjust astercc parameters to get better performance for asterisk billing

There’re some parameters in file astercc.conf for astercc daemons. We can change them to get a beter performance for asterisk billing.
please note that u need to restart asterrc daemon to reload configration.
refreshrate = 60
refreshrate is the seconds asterrc daemon reload data from database, when u change asterBilling setting a lot, like rate, clid … , [...]

Leave a Comment

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 = 0086
number length = 0
connect charge [...]

Comments (3)

why we say asterCC solutions could work with all kinds of asterisk based solution.

asterCC package provides a call center solution and a billing solution for asterisk, the most important feature is, asterCC could work with all asterisk based solutions and no need do any modification to the original system,  as we have tested, including:

Trixbox
Elastix
Callweaver
Freepbx
Magiclink
Fonesoft
asterisk2billing (a2b)
pbx in a flash

so when you are using a asterisk based system and want [...]

Leave a Comment

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 thing [...]

Comments (7)

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 in table ‘resellerrate’)
`creditlimit`: if [...]

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)

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 add line then it [...]

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 -uyourmysqluser -pyourmysqlpasswd astercc
Note: here we create the database named astercc, [...]

Comments (4)