Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Application Path & Sign in problems
I'm having a problem when users attempt to sign in. It appends the websites folder name at the end of the url... www.positivelyyoung.com/positivelyyoung when it should be just www.positivelyyoung.com ...if the user attempts to log in again it works with no error...I checked the application settings and the path to vanilla was incorrectly listed as www.positivelyyoung.com/positivelyyoung so I corrected the path but the application still attemps to take users to www.positivelyyoung.com/positivelyyoung when they sign in. Would this information be saved elsewhere?
0
This discussion has been closed.
Comments
echo("PHP_SELF: " . $_SERVER["PHP_SELF"]); echo("<br />Directory: " . dirname($_SERVER["PHP_SELF"]));
Then upload it to your server.
Then view it in a web browser and tell me what it says...
A quick fix for you would be to change this line:
$this->ReturnUrl = ForceString(@$_SERVER['HTTP_HOST'], "").$this->ReturnUrl;
to this:
$this->ReturnUrl = ForceString(@$_SERVER["HTTP_HOST"], "");