Tagged Questions

11
votes
3answers
100 views

Proper way to use “Remember me” functionality in PHP

Short Working on login system and trying to implement remember me feature. Recently, l did research about this subject, read bunch of articles, posts, stories, novels, fairy tales (calling them so, ...
4
votes
5answers
400 views

Difference between creating a session and a cookie?

I'm working on my first website with the Play! framework, and at one point I'm calling this method when the user logs in: static void connect(User user){ session.put("userid", user.id); } ...
3
votes
3answers
2k views

Zend Framework rememberMe() doesnt seem to remember me

My session seems to only be valid in the current window/tab. Also it seems to timeout quickly. Heres how I'm currently attempting to do it: This is in my login controller: $adapter = ...
2
votes
1answer
324 views

PHP session garbage collection becoming an annoyance, i need some help to modify this behavior

I have been having this problem for some time now, I dont exactly know that if this is the issue but I am pretty confident that it is, I have my remember me session set too expire after 1 week, but ...
2
votes
4answers
747 views

Cookie and session in “remember me” feature

I have never wanted to allow a user to stay logged in for any length of time so I never saw a use for a "remember me" feature. I started thinking about how it's done though and would like some ...
1
vote
2answers
569 views

Google App Engine Java - Keep Session alive after users close browser (remember me function)

We can enable session by setting sessions-enabled to true in file appengine-web.xml. However, the session implemented by GAE is not persistent after closing browsers. My question is how to keep the ...
0
votes
1answer
297 views

Remember-Me with Spring Security, various questions

I'm using Spring Framework 3.0.5 and Spring Security 3.0.5 for developing a webapplication where users can log in and log out, using Remember-Me-Service, if they want to. As I don't have pretty much ...
0
votes
1answer
58 views

How can I set a logged in session to be remembered for 2 weeks in CodeIgniter?

If a user logs in and selects "Remember me for 2 weeks", I want the session to remember them for 2 weeks. If not, it should expire in 2 hours. How do I do this?
0
votes
2answers
685 views

Session Management (Zend Framework specific)

I'm trying to get the rememberMe() function to remember users and retain sessions for months at a time. I've read that if you pass a value through rememberMe() it will not work if the session has ...
0
votes
2answers
206 views

logging in, logging out & session behavior

When you log out of a web app, should ALL your session be logged out? When I log out of the web app from the public library, should it also log me out of the session I have on my home computer? When ...