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.
delete cookie for sign-out
soo
New
Hello,
I am using SSO with jsConnect and jsConnect Auto signin. I changed my signout url on forums into my master site. When I clicked sign-out button on forums, it moves sign-out page on the master site.
I can log out on my master site but, i cannot logout from forums.
i am still connected in forums, and cannot be out of it.
I want to delete cookies in forums when I sign out.
If you have some solutions, please let me know.
Thanks
0
Comments
Try this method: http://vanillaforums.org/discussion/18495/method-to-allow-sso-auto-logonlogoff
There was a discussion a few days ago for a method to implement a single sign out.
My shop | About Me
Thank you for your reply.
-- login setcookie('Vanilla',' ',time()+3600,'/',HOSTNAME);
setcookie('Vanilla-ConnectFlood',' ',time()-3600,'/',HOSTNAME);
unset($_COOKIE[' Vanilla-ConnectFlood']);
-- logout setcookie('Vanilla',' ',time()-3600,'/',HOSTNAME);
setcookie(' Vanilla-ConnectFlood',' ',time()-3600,'/',HOSTNAME);
unset($_COOKIE['Vanilla']);
unset($_COOKIE[' Vanilla-ConnectFlood']);
Where should I add above codes? I don't know where I shoud put them on in my php source.
please let me know.
Thanks