That doesn’t happen in my 0.9.0.2 installation. Maybe it’s a cookie problem, since that is how bbPress knows you’re already logged in (via a cookie.)
Need more information on your installation. Can you post a link to your forum so others can try it?
Maybe you can do it if you store the session cookie with a longer life time.
be careful it’s less safe…
finalwebsites: The login cookie should survive closing the browser window, shouldn’t it? I think mine works like that.
You have to explicitly choose “Remember me” when you login. If that option isn’t there when you login then you need to update your template to match the default one in this regard.
I’m pretty sure this was a part of the last release.
here is the link to my forum http://www.dvdvideosoft.com/forums/index.php
>> The login cookie should survive closing the browser window, shouldn’t it? I think mine works like that.
Yes, but you can see it does not survive on my forum.
to sambauers:
>> You have to explicitly choose “Remember me” when you login. If
>> that option isn’t there when you login then you need to update
>> your template to match the default one in this regard.
It makes sense! Please give me some advice.
Do I need to correct my skin template or can I set a parameter in the config file?
> Yes, but you can see it does not survive on my forum.
Right you are
Name bbpress_[snipped]
Value chrishajer%7C[snipped]
Host www.dvdvideosoft.com
Path /forums/
Secure No
Expires At End Of Session
I just noticed there is no box at this forum either.
If you want people to stay logged in after the end of the session, just add the following within the form element in the login-form.php template file:
<input name="remember" type="hidden" value="1" />
Just make sure it’s before the closing </form>
tag.
Dear John Conners, thank you!
Simple and works!