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.
Sessions
I have my own sessions and I would like to pass session values into Vanilla.
ie, when a user log into site, they can click on vanilla message board and not have to log in. The user information login are the same in vanilla user table and the main site login table.
If anyone can tell me which file I can modify to it would read or be pointed to session file that would be great..
thank you...
1
Comments
if (!session_id()) { session_start(); }
I have implemented single-signon, so when users log into the main CMS site, they are also logged into Vanilla. The RSS feed request passed the Vanilla session cookies in from the user's browser, and that ensure permissions are correctly handled, since Vanilla knows which user is requesting the RSS feed, even though that user is on a different site (though the same top-level domain).
Essentially I use RSS to separate the sessions, but can still pass a session ID through the RSS feed request.