Log-Out Prob

nush

New Member
Hey guys

when i goto log out of my forum i get this error

An error occurred while attempting to log you out


can any1 please help me fix this


thanks
 
1:Try deleting you cookies:
open browser>>tools>>>internet options
and restart browser

2:If that don't work you need to look at your cookie settings:
Admincp>>>vbulletin options>>Cookies and HTTP Header Options
reset the cookie domain and path to defaults:
Cookie Domain: blank
Cookie Path: /

If #2 doesn't work or the domain and path are already set to defaults, try changing the domain to ".example.com". Note the leading dot!
 
Also what version of vbulletin are you using? I always got the same effect when I was using 3.6.7, I think this issue was resolved in 3.6.8

if your using 3.6.8 and still getting the problem, then I have no clue what the problem could be.
 
I'm having the same problem but I have 3.50 with a Metallic Infusion skin.

If you revert the navbar templete it will probably work. However I don't want to revert my skin. I wanna keep it and fix the problem.

Anyone have fixed the problem with the Metallic Infusion skin?
 
<if condition="$bbuserinfo['userid']">
<td class="navigation_seperator"><a href="login.php?$session[sessionurl]do=logout&u=$bbuserinfo[userid]" onclick="return log_out()">$vbphrase[log_out]</a></td>
</if>

Ther's the code. Is there something wrong with it?
 
I use this code and Idon´t have problems.

<if condition="$show['member']">
<td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')">$vbphrase[log_out]</a></td>
</if>
 
Just a little fix, it was breaking the white part of the navbar.

<if condition="$show['member']">
<td class="navigation_seperator"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')">$vbphrase[log_out]</a></td>
</if>
 
Back
Top