Log in

View Full Version : "Remember me" unchecked -> users logged out after playing game, scores not saved


evouga
07-31-2011, 07:32 AM
Hey everyone,

If a user tries to play a game in my arcade (using vB 4.1.5) after logging in without "remember me," they are logged out as soon as they start playing a game, and upon finishing the game their scores aren't saved.

The logout occurs regardless of how the user leaves the game page (for instance beating the game, or clicking on the "Arcade" nav link.)

I've tried Hippy's holdsession.php fix and it did not work.

Has anybody else had this problem? Is there a known fix? How would I go about debugging this issue?

Thanks.

EDIT: Extra info: "Play in new window" also immediately logs users out. They can click "play in new window," *immediately* close that window, refresh the arcade page, and they're logged out. So the problem doesn't appear to be in holdsession.php.

Hippy
08-01-2011, 07:54 PM
holdsession.php fix stopped working :(.

I found it to just be easier to make all the check boxes checked by default..

example in the screen shot below you'll see the templates to edit
search templates for {vb:rawphrase remember_me}

here is a example of the code your looking for

<label for="cb_cookieuser"><input type="checkbox" name="cookieuser" id="cb_cookieuser" value="1" tabindex="1" /> {vb:rawphrase remember_me}</label>


add checked="checked" where you see it here

<label for="cb_cookieuser"><input type="checkbox" name="cookieuser" id="cb_cookieuser" value="1" tabindex="1" checked="checked" /> {vb:rawphrase remember_me}</label>

*note

the code might be a litte different in each template so just search for the rawphrase remember_me and add the checked="checked"

right before /> {vb:rawphrase remember_me}

this will have the remember me checked default..

hope it helps you

ForceHSS
09-10-2011, 04:20 AM
do you do it on them all or just the header

Hippy
09-10-2011, 11:02 AM
personally.. I do them all

ForceHSS
09-10-2011, 12:12 PM
thanks works well