Archive for the ‘asterBilling’ Category

why i cant see booth history when can see the calling call?

some customers find that they can see live booth calls(screen 1) but when call is done, nothing appears in the booth box(screen 2).

this happens coz the admin set sip account in “clid” when it should be “caller id”
check table “mycdr” you will find that the “src” filed would be a number which doesnt match with [...]

Comments (2)

new feature in asterbilling

we provide a new feature in asterbilling, you can read your buy rate when add a sell rate manually.
say admin set three rates for reseller:
default     0.2        for all resellers
0086        0.25     for reseller1
00852     0.3        for all resellers

then reseller1 logged in and want to add sell rate for his callshop
1. [...]

Leave a Comment

why cant import when the file is big?

some customers find that they get a problem when import, it just gives a XML error, that’s because there’s too much data and no enough memory for php.
find the php.ini for your apache line: memory_limit
it could be like 16M or 20M, try change it bigger, say 64M
so it looks like
memory_limit = 64M
save and exit, remember [...]

Comments (2)

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)

asterbilling and asterisk2billing (a2billing) for asterisk billing

a2billing is a widly used billing system, so what’s the difference between a2billing and asterbilling?
system theory:
a2billing work with asterisk through AGI, each call would be handled by a2billing.agi, so you need change your astierks context so that when your phone make calls it will go to a2billing.agi, of course you need to copy a2billing scripts [...]

Comments (1)

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 and asterbilling.
1. step1, install asterisk
2. step2, [...]

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 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)

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 (6)