We have a Vici server installed about 3 years ago from the version 10.0.1.iso. This shows
Version: 2.14b0.5
SVN Version: 3594
DB Schema Version: 1724
And I set up a new server, using the ViciBox_V12.x86_64-12.0.2.iso which shows these versions:
Version: 2.14b0.5
SVN Version: 3909
DB Schema Version: 1724
On the old server, we're able to get the users logged in with a URL like
- Code: Select all
http://serverip/agc/vicidial.php?VD_login=MyUsername&VD_pass=MyPassword&phone_login=PhoneUsername&phone_pass=PhonePassword&VD_campaign=1234
I did a wireshark capture during a login, and it seems to login with just a GET request using that URL.
On the new server, the same URL brings up a blank page. If I add relogin=YES to the parameters, like this
- Code: Select all
http://serverip/agc/vicidial.php?relogin=YES&VD_login=MyUsername&VD_pass=MyPassword&phone_login=PhoneUsername&phone_pass=PhonePassword&VD_campaign=1234
Then it brings up a login page but doesn't login automatically, the user needs to click the "Submit" button which triggers a POST request to the web server.
Is there any way to make it work with just the GET URL ? Perhaps adding other parameters ? This is important because we call this URL from an application.
I know the login page has some more parameters like "LOGINvarONE=&LOGINvarTWO=&LOGINvarTHREE=&LOGINvarFOUR=&LOGINvarFIVE=&hide_relogin_fields=" but they don't seem to make a difference in this case.
Many thanks for any suggestions.