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.
Login integration NOOB
rocoso
New
Hi
I have been searching and reading this forum before asking this question. I know its asked alot, i just cant figure it out.
My main site is is using a custom login with no MD5. My data base tables are matching. Users are able to login to vanilla forum. Is there a easy way to make the People.ClassAuthenticator.php match the username and password so the auto login will just work :)? I have tryed everything and have read every post here :)
Thank You
I
0
This discussion has been closed.
Comments
Sharing is the default, under the name PHPSESSID. If your own site authentication use a specific session name (recommended, IMO, to avoid multiple software on the same host overwriting each others common variables such as "User"), just set the same name on the Vanilla session, by adding in your authenticator module a session_name()call:
if (!session_id()) { session_name($this->Context->Configuration['YourSessionConfigVariable']); session_start(); }
BTW: I suggested to Mark, one year ago to add a session NAME to Vanilla. Should we add it to bug tracker?