Page 1 of 1

Authenticate.php page Not Found

PostPosted: Wed Dec 28, 2016 7:04 am
by benz21
Hi Guys,

I'm new to ViciDial and I was tasked to update our old ViciDial system to a newer version.
After stepping thru my code, it returns an error on this page (agc/authenticate.php) after the POST method.
and it looks like no longer exist in the directory.
Any idea on how to handle this? or is there an equivalent page for this?

See below existing code:
Code: Select all
string url = string.Format("http://{0}/agc/authenticate.php", this.Server);
string resultPage =;
using(WebClient wc = new WebClient())
{
   wc.Headers["Content-Type"] = "application/x-www-form-urlencoded";
   resultPage = wc.UploadString(url, "POST", "");
}
return new ApiResponse(ApiResponseTypes.Authentication,resultPage);


Thanks for your help.

Re: Authenticate.php page Not Found

PostPosted: Wed Dec 28, 2016 7:44 am
by mflorell
Not sure what version of VICIdial you upgraded from, but that script was never part of the vicidial codebase.

Re: Authenticate.php page Not Found

PostPosted: Tue Jan 31, 2017 7:06 am
by benz21
mflorell wrote:Not sure what version of VICIdial you upgraded from, but that script was never part of the vicidial codebase.


Hi mflorell, this is okay now. The said page was created from our senior developer to authenticate user first prior logging-in. Thanks for your help.