Log in

View Full Version : how can I find out the value of "logouthash"


dynamot
09-13-2007, 04:39 PM
On an external page, I want to provide an option to the user to logout.

I was reading through a few articles, and think that all I have to do to logout a user is

http://website/login.php?do=logout&logouthash=logouthashvalue

I am definitely including the global.php on top. So with that being executed, how can I retrieve the value that goes into logouthash="logouthashvalue"

tx

Is this the value that goes into logout?

print_r($vbulletin->userinfo['logouthash']);

brandondrury
09-13-2007, 09:19 PM
$logouthash=$vbulletin->userinfo['logouthash'];

Dismounted
09-14-2007, 08:09 AM
Look what you can find if you searched "logouthash".
$user['logouthash'] = md5($user['userid'] . $user['salt'] . COOKIE_SALT);

dynamot
09-14-2007, 12:59 PM
hehehe Tx Dismounted

I did actually try searching for it. There was too much of information out there that was a bit difficult to parse.