PDA

View Full Version : logout error for vbulletin 3.0.1


sphinxnu
06-06-2004, 10:13 AM
Old templates (skin) and upgrade of Vbulletin 3.0.1 logout error

An error occurred while attempting to log you out. Click here to log out.

fix to
Log in admincp - Styles & Templates find navbar templates
Find:

<if condition="$bbuserinfo['userid']">
<td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout" onclick="return log_out()">$vbphrase[log_out]</a></td>
</if>

Replace to

<if condition="$bbuserinfo['userid']">
<td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&amp;u=$bbuserinfo[userid]" onclick="return log_out()">$vbphrase[log_out]</a></td>
</if>

Have fun

Zachery
06-06-2004, 11:31 AM
You should revert your templates or check on them when new versions come out. but thanks :)

imported_FleaBag
06-26-2004, 12:56 PM
This came in handy, I'd had no idea why my Log Out wasn't working. :)