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.
Session Names
Hey,
I was wondering if anyone knew what the actual session names are that are used. I know how to call them, but I also need to know their names for other portions of my site.
Also, what sessions are used? I'm guessing when you login you get get a username session, userid session, and probably a password session. Any others?
Thanks for any help!
I was wondering if anyone knew what the actual session names are that are used. I know how to call them, but I also need to know their names for other portions of my site.
Also, what sessions are used? I'm guessing when you login you get get a username session, userid session, and probably a password session. Any others?
Thanks for any help!
0
Comments
from memory, it's using $_SESSION['UserID'], $_SESSION['User'] and $_SESSION['SessionPostBackKey']$_SESSION['LussumoUserID'] and $_SESSION['SessionPostBackKey']).I looked that those 2 files and Authenticator was just messy (too many objects...) and the session one was using a variable ($Name) to set the sessions, but I don't know where that variable is set.
Just tried looking again more closely at authenticator and found this: @$_SESSION[$this->Context->Configuration['SESSION_USER_IDENTIFIER']] = $UserID;
Problem with that is I still don't know the name for it lol. I looked in settings.php and there is nothing in there that has to do with sessions.
Is UserID just the account id? Like 1, 2, 3, etc?
And is the PostBackKey just the url that the user was at before they went to login? (So they can be redirected to it once they login)