Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

redirect to http://your.forum.com after i logout of forum

Howdy! I know this is recorded somewhere, but I"m not seeing it in the nginx rewrites nor the flat files for vanilla.

When I sign-out of my account on my Vanilla forum it tries to redirect me to:

http://your.forum.com

Anyone know where it's getting this location from?

Thanks!

Comments

  • edited December 2014

    Do you want it to redirect elsewhere ? This config is what tell where to redirect after sign out.

    $Configuration['Garden']['Authenticator']['SignOutUrl']= '/entry/signout/{Session_TransientKey}?Target=%2$s';

    here I made it redirect to the main site

    $Configuration['Garden']['Authenticator']['SignOutUrl'] ='http://www.vrijvlinder.com/forum/entry/signout/{Session_TransientKey}?Target=http://www.vrijvlinder.com/';

  • That fixed it! Thanks. It was literally sending the page after signing out to the your.forum.com host and not my defined host.

Sign In or Register to comment.