Log in

View Full Version : logouthash - What *exactly* is it?


6impy
10-03-2005, 08:14 PM
I understand why they implemented it, but I'm curious how can I determine/calculate it independent of the forums?

I mean, it is a random session variable or a md5 of the username+password or what?

Thanks!

Andreas
10-03-2005, 08:17 PM
// set the logout hash
$user['logouthash'] = md5($user['userid'] . $user['salt'] . COOKIE_SALT);



Constant COOKIE_SALT is your vBulletin License Number.

6impy
10-03-2005, 08:19 PM
Thank you Kirby. I've been awake for about 30 hours now and going insane trying to get everything working.