Support A2Billing :

provided by Star2Billing S.L.

Support A2Billing :
It is currently Tue Apr 23, 2024 6:36 pm
Predictive Dialer


All times are UTC




Post new topic Reply to topic  [ 28 posts ]  Go to page Previous  1, 2
Author Message
 Post subject:
PostPosted: Tue Apr 22, 2008 10:53 am 
Offline

Joined: Fri Dec 14, 2007 11:20 am
Posts: 20
Hi, I send you a screenshot that I made after a call and the log file of my asterisk console.

thanks to answer me!

Added after 24 minutes:

I delete the application Answer() in my extensions_a2billing.conf and try to nake a new call.
I found this:
in the picture that i send you, the line below doesn't exit
-- Executing Answer("SIP/9050649106-0818c838","") in new stack

But the problem is always the same, then the is situated on the second application Answer in the log file that i send you which is:
Code:
-- AGI Script Executing Application: (Dial) Options: (SIP/15148920738@CTCSIPOUT|60|HRgrL(14544000:61000:30000))
    -- Limit Data for this call:
    -- - timelimit     = 14544000
    -- - play_warning  = 61000
    -- - play_to_caller= yes
    -- - play_to_callee= no
    -- - warning_freq  = 30000
    -- - start_sound   = UNDEF
    -- - warning_sound = timeleft
    -- - end_sound     = UNDEF
    -- Called 15148920738@CTCSIPOUT
    -- SIP/CTCSIPOUT-08187f18 answered SIP/9050649106-08209aa


where do you delete this application Answer()? CTCSIPOUT is my trunk.....


Attachments:
log.txt [11.04 KiB]
Downloaded 457 times
after_call.JPG
after_call.JPG [ 57.56 KiB | Viewed 7489 times ]
Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 22, 2008 2:58 pm 
Offline
User avatar

Joined: Mon Apr 30, 2007 6:43 am
Posts: 1060
Location: Canada
You should not delete the application. You should simply not use it if you don't want it. Can you show us your asterisk extensions please? I am sure that everything will be sorted out once we see what you have in the extension that is calling a2billing.

Cheers


Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 22, 2008 3:46 pm 
Offline

Joined: Fri Dec 14, 2007 11:20 am
Posts: 20
I send you my extension.conf


Attachments:
extension_conf.txt [47.7 KiB]
Downloaded 355 times
Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 22, 2008 4:21 pm 
Offline
Moderator
User avatar

Joined: Thu Jun 22, 2006 2:19 pm
Posts: 2890
Location: Devon, UK
You could try removing the 'r' from your dialcommand_param.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 22, 2008 5:53 pm 
Offline
User avatar

Joined: Mon Apr 30, 2007 6:43 am
Posts: 1060
Location: Canada
Marko, your extension does not contains anything about a2billing. Can you please send the one that contains [a2billing], [a2billing-cid-callback], and others.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 23, 2008 11:01 am 
Offline

Joined: Fri Dec 14, 2007 11:20 am
Posts: 20
HI,
Stavros I tried to remove the 'r' in dialcommand_param but the problem is the same.
Asyby, My Pbx is based on trixbox and the extension for a2billing for trixbox is extensions_a2billing.conf, I send you it.


Attachments:
extensions_a2billing.txt [125 Bytes]
Downloaded 392 times
Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 23, 2008 6:44 pm 
Offline
User avatar

Joined: Mon Apr 30, 2007 6:43 am
Posts: 1060
Location: Canada
Hello Marko,

Are you saying that in your extension_a2billing.conf, you only have this :

Code:
[a2billing]

;exten => _X.,1,Answer
exten => _X.,1,Wait(1)
exten => _X.,n,DeadAGI(a2billing.php|1)
exten => _X.,n,Hangup


If that is the case, then you need a lot more than that. Cause that will not handle any DID call. It will only be able to handle standard calling card mode.

You have to put something similar to the following. And make sure that you have it customized to fit your needs.

Code:
[a2billing]
exten => _X.,1,Answer
exten => _X.,n,Set(AGISIGHUP=no)
exten => _X.,n,DeadAGI(a2billing.php|1)
exten => _X.,n,Hangup

;Used by web-callback and all callback only
[a2billing-callback]
exten => _X.,1,Set(AGISIGHUP=no)
exten => _X.,n,DeadAGI(a2billing.php|1|callback)
exten => _X.,n,Hangup

[a2billing-cid-callback]
exten => _X.,1,Set(AGISIGHUP=no)
exten => _X.,n,DeadAGI(a2billing.php|1|cid-callback|1)
exten => _X.,n,Hangup

[a2billing-all-callback]
exten => _X.,1,Set(AGISIGHUP=no)
exten => _X.,n,DeadAGI(a2billing.php|1|all-callback|1)
exten => _X.,n,Hangup

[a2billing-predictivedialer]
exten => _X.,1,Set(AGISIGHUP=no)
exten => _X.,n,DeadAGI(a2billing.php|1|predictivedialer)
exten => _X.,n,Hangup

[a2billing-did]
exten => _X.,1,Set(AGISIGHUP=no)
exten => _X.,n,DeadAGI(a2billing.php|1|did)
exten => _X.,n,Hangup

[a2billing-voucher]
exten => _X.,1,Set(AGISIGHUP=no)
exten => _X.,n,DeadAGI(a2billing.php|1|voucher)
exten => _X.,n,Hangup


And if you are really DID calls, then send it to the context called [a2billing-did]


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 30, 2008 10:51 am 
Offline

Joined: Fri Dec 14, 2007 11:20 am
Posts: 20
Hi,

but the problem is always the same thing . I do all but the problem persits always. I do not see where lies the problem.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 30, 2008 5:11 pm 
Offline
User avatar

Joined: Mon Apr 30, 2007 6:43 am
Posts: 1060
Location: Canada
Hello Marko. It is probable that this problem is related to your provider. Try changing provider to see. If necessary, I will give you a test account so you can make a limited amount of calls. Feedbacks will be crucial cause I will not extend the testing period. Also, we will have to do a live test and watch the CLI during the test calls. I know for a fact that we do not Answer the live when acting as a trunk.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 30, 2008 5:27 pm 
Offline

Joined: Fri Dec 14, 2007 11:20 am
Posts: 20
Hello Asiby, give me your test account for making test!


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 30, 2008 6:41 pm 
Offline
User avatar

Joined: Mon Apr 30, 2007 6:43 am
Posts: 1060
Location: Canada
Ok, give me some time and I will PM you the settings.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 30, 2008 7:14 pm 
Offline
Moderator
User avatar

Joined: Thu Jun 22, 2006 2:19 pm
Posts: 2890
Location: Devon, UK
marko wrote:
Hello Asiby, give me your test account for making test!
Ahem, you forgot "please". And "thanks for taking time from your business to help me with mine". :)


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 02, 2008 9:12 am 
Offline

Joined: Fri Dec 14, 2007 11:20 am
Posts: 20
Hi Stavros,
Sorry, I forget it?
Thanks to say me Stavros


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 28 posts ]  Go to page Previous  1, 2
Voice Broadcast System


All times are UTC


Who is online

Users browsing this forum: No registered users and 21 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group