Universal Logout Hash for 3.7.0
The Problem: For different coders, vBulletin features a system that can be integrated into the rest of the website with different functions that allow for easy access masks on the website. It's good web design to allow a user to logout on any page and not force them to go to the forum beforehand. Querying the database from any page should provide an easy fix, but you need the code constructed right for the hash to work.
The Solution: I did a search and couldn't find anything on this for the new script, so I dug through the files and saw it's constructed differently. Here is the old and new codes below.
Pre-3.7.0:
Code:
$logouthash = md5($userid . $salt . COOKIE_SALT);
New code:
Code:
$logouthash = sha1($userid . sha1($salt) . sha1(COOKIE_SALT));
COOKIE_SALT is your
license number... NOT customer number. Using this, you can have the logout still direct to your login.php to immediate log the user out.