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.
Sign out problem
When I click sign out I get this error:
"Not Found
The requested URL /home/xxxx/public_html/vf/people.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."
the url is http://www.xxxx.com/home/yyyyy/public_html/vf/people.php?PostBackAction=SignOutNow&FormPostBackKey=241a62f69a42fe348a9e007514a830e4
I guess it should be http://www.xxxxx.com/vf/people.php?PostBackAction=SignOutNow&FormPostBackKey=241a62f69a42fe348a9e007514a830e4
Any ideas?
"Not Found
The requested URL /home/xxxx/public_html/vf/people.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."
the url is http://www.xxxx.com/home/yyyyy/public_html/vf/people.php?PostBackAction=SignOutNow&FormPostBackKey=241a62f69a42fe348a9e007514a830e4
I guess it should be http://www.xxxxx.com/vf/people.php?PostBackAction=SignOutNow&FormPostBackKey=241a62f69a42fe348a9e007514a830e4
Any ideas?
0
This discussion has been closed.
Comments
if ($this->Context->Session->UserID > 0) { echo str_replace('//1', $this->Context->Session->User->Name, $this->Context->GetDefinition('SignedInAsX')) . ' (<a href="' . FormatStringForDisplay(AppendUrlParameters( $this->Context->Configuration['SIGNOUT_URL'], 'FormPostBackKey=' . $this->Context->Session->GetCsrfValidationKey() )) . '">'.$this->Context->GetDefinition('SignOut').'</a>)'; } else { echo $this->Context->GetDefinition('NotSignedIn') . ' (<a href="' . FormatStringForDisplay(AppendUrlParameters( $this->Context->Configuration['SIGNIN_URL'], 'ReturnUrl='. urlencode(GetRequestUri(0)))) . '">'.$this->Context->GetDefinition('SignIn').'</a>)'; }
Copy and paste what you've got.
$Configuration['SIGNOUT_URL'] = '/vf/people.php?PostBackAction=SignOutNow' ;
it should be
$Configuration['SIGNOUT_URL'] = '/forum/people.php?PostBackAction=SignOutNow' ;
or$Configuration['SIGNOUT_URL'] = 'http://example.com/forum/people.php?PostBackAction=SignOutNow' ;
For a forum at http://example.com/,
it should be
$Configuration['SIGNOUT_URL'] = '/people.php?PostBackAction=SignOutNow' ;
or$Configuration['SIGNOUT_URL'] = 'http://example.com/people.php?PostBackAction=SignOutNow' ;