Page Index Toggle Pages: 1 Send TopicPrint
Hot Topic (More than 10 Replies) Phonerlite and external applications (Read 13487 times)
goro
YaBB Newbies
*
Offline


Phoner is great!

Posts: 8
Joined: 21. Jul 2016
Phonerlite and external applications
21. Jul 2016 at 12:28
Print Post  
Good afternoon.
As dialers use PhonerLite, I want that when an incoming call to open links consisting of a static address + number of the incoming call
Example:




http://admin.domen.ua/manage/user/search/?phone=70$%7BCALLERID(num)%7D

$ {CALLERID (num)} - and transmitted, that should be indicated in this field?
  
Back to top
 
IP Logged
 
Phoner Admin
YaBB Administrator
*****
Offline



Posts: 11389
Location: Germany
Joined: 12. Oct 2003
Gender: Male
Re: Phonerlite and external applications
Reply #1 - 21. Jul 2016 at 12:34
Print Post  
It is much simpler. Just configure in PhonerLite to call a batch file (e.g. "incoming.bat").
Within this batch file you can do almost everything. The called number is the first parameter. A batch file can access it by "%1".
Your batch file should build an URL with this parameter and start the browser.
  
Back to top
WWW  
IP Logged
 
goro
YaBB Newbies
*
Offline


Phoner is great!

Posts: 8
Joined: 21. Jul 2016
Re: Phonerlite and external applications
Reply #2 - 21. Jul 2016 at 14:10
Print Post  
sorry, I did not understand
Please example
  
Back to top
 
IP Logged
 
Phoner Admin
YaBB Administrator
*****
Offline



Posts: 11389
Location: Germany
Joined: 12. Oct 2003
Gender: Male
Re: Phonerlite and external applications
Reply #3 - 21. Jul 2016 at 14:31
Print Post  
This is just an example. Create a file in PhonerLite folder with the name "incoming.bat". With a normal text editor you open that file. The new content should look like:
Code
Select All
set myurl=http://admin.domen.ua/manage/user/search/?phone=
set myurl=%myurl%%1
start %myurl% 



In PhonerLite you just tell for external applications to start "incoming.bat".
  
Back to top
WWW  
IP Logged
 
volfram123
YaBB Newbies
*
Offline


Phoner is great!

Posts: 1
Joined: 23. Jul 2016
Re: Phonerlite and external applications
Reply #4 - 23. Jul 2016 at 11:16
Print Post  
Hi!

To insert the number of person who call we can use "%1". But is it possible to insert the number, for which this person is call?

It is important to manage the different advertising channels with different phone numbers. I try to use %2 or %3 - but it doesn't work Cry

In help center I can't find the names of variables, that it is possible to use to start other applications.


  
Back to top
 
IP Logged
 
Phoner Admin
YaBB Administrator
*****
Offline



Posts: 11389
Location: Germany
Joined: 12. Oct 2003
Gender: Male
Re: Phonerlite and external applications
Reply #5 - 25. Jul 2016 at 08:54
Print Post  
PhonerLite only can use one active profile. Therefore it is clear, for which number the call was.
  
Back to top
WWW  
IP Logged
 
Bertrand
YaBB Newbies
*
Offline


Phoner is great!

Posts: 1
Joined: 15. Dec 2016
Re: Phonerlite and external applications
Reply #6 - 15. Dec 2016 at 16:27
Print Post  
Hello,

The .bat script works great for displaying customer information webpage upon receiving a call. However :

  • when set in incoming call field, the script is invoked before the call is answered, potentially messing your screen if you're already on a call

  • when set in connected call field, the script is run for both incoming and outgoing calls; you won't want the latter since when you're calling a customer, you already have its informations displayed on-screen


Is there a way to [run a script | call an URL] only when answering an incoming call ?

Thank you,
  
Back to top
 
IP Logged
 
Phoner Admin
YaBB Administrator
*****
Offline



Posts: 11389
Location: Germany
Joined: 12. Oct 2003
Gender: Male
Re: Phonerlite and external applications
Reply #7 - 23. Dec 2016 at 07:44
Print Post  
If you need more detailed status information, you can take a look at the COM interface. You can handle such events within your own application then.
  
Back to top
WWW  
IP Logged
 
zhendosina
YaBB Newbies
*
Offline


Phoner is great!

Posts: 2
Joined: 25. Oct 2017
Re: Phonerlite and external applications
Reply #8 - 25. Oct 2017 at 20:57
Print Post  
Hello! Is it possible to configure different external applications to different sip accounts?
  
Back to top
 
IP Logged
 
Phoner Admin
YaBB Administrator
*****
Offline



Posts: 11389
Location: Germany
Joined: 12. Oct 2003
Gender: Male
Re: Phonerlite and external applications
Reply #9 - 26. Oct 2017 at 10:57
Print Post  
No, that is not possible with Phoner or PhonerLite.
  
Back to top
WWW  
IP Logged
 
jasonmichael
YaBB Newbies
*
Offline


Phoner is great!

Posts: 24
Joined: 15. Mar 2018
Re: Phonerlite and external applications
Reply #10 - 15. Mar 2018 at 19:58
Print Post  
Phoner Admin wrote on 21. Jul 2016 at 14:31:
This is just an example. Create a file in PhonerLite folder with the name "incoming.bat". With a normal text editor you open that file. The new content should look like:
Code
Select All
set myurl=http://admin.domen.ua/manage/user/search/?phone=
set myurl=%myurl%%1
start %myurl% 



In PhonerLite you just tell for external applications to start "incoming.bat".


Hi there , 

I want to use the external application feature to open the add new google contact page that uses this url:

https://www.google.com/contacts/u/0/?cplus=0#contact/new

this means , i do not want to use the incoming call number - i want it stripped from my bat file. This is what I currently have in my bat file :

set myurl=https://www.google.com/contacts/u/0/?cplus=0#contact/new
set myurl=%myurl%%1
start %myurl% 


how do I set the url above so it ignores the incoming caller id?

  
Back to top
 
IP Logged
 
Phoner Admin
YaBB Administrator
*****
Offline



Posts: 11389
Location: Germany
Joined: 12. Oct 2003
Gender: Male
Re: Phonerlite and external applications
Reply #11 - 19. Mar 2018 at 15:10
Print Post  
The CallerID is the first parameter given to the batch file. That first parameter is identified by "%1" - the second parameter would be "%2". So just strip "%1" from the URL...
  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint