up vote 1 down vote favorite
share [g+] share [fb]

I want to get the logout hash for vBulletin so that I can link to the logout bit directly from my main site.

How can I do this? (in PHP)

link|improve this question

55% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The logout hash is loaded into the global userinfo array, so it's available to you when you've included the "global.php" file.

A very basic example of creating a page with just the logout link might look like this (assuming your script is in the vBulletin directory):

<?php
include('./global.php');
if($vbulletin->userinfo['userid'] > 0){
    echo '<a href="login.php?' . $session[sessionurl] . 'do=logout&amp;logouthash=' . $vbulletin->userinfo['logouthash'] . '">Logout</a>';
}
?>
link|improve this answer
brilliant, cheers! – Tom Oct 1 '09 at 19:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.