MyBB Community Forums

Full Version: Log out everytime that I close the browser
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
And, yes, the "Remmember me" is checked, I don't know why happen this Sad
Make sure your browser isn't set to delete cookies on exit.
Does this happen for all members and all browsers?
I look yesterday my cookies settings and are fine, I can close the tab and back after 4 hours still fine, but when I close it and open the browser it happens. (Tested in Firefox and Opera with admin account and normal user account)

I tried deleting manually all the cookies of my site and still happening.

The code for the checkbox (I think that is something wrong there)
<input type="checkbox" class="checkbox" name="remember" checked="checked" value="yes"> Recordarme</label>

Try reverting your welcomeblock_guest template.
If I revert it the login appear when I click "login" but I want to show the login box without click nothing. The problem is that the:
<input type="checkbox" class="checkbox" name="remember" checked="checked" value="yes" /> {$lang->remember_me}
Don't works :l

yay! I fixed it, The
<label title="{$lang->remember_me_desc}"><input type="checkbox" class="checkbox" name="remember" checked="checked" value="yes" /> {$lang->remember_me}</label>

have to be before of
 <input type="hidden" name="action" value="do_login">
Big Grin