[symfony-users] What about the Remember me widget? What it serves for? Is useful?

2010-03-30 Thread Javier Garcia
Hi, the signin form of sfDoctrineGuardPlugin shows the widget Remember me. I suppose it serves for the web browser 'remember' the password, but now i think it is not very used so i should remove it.. Am i right? Javi -- If you want to report a vulnerability issue on symfony, please send it

Re: [symfony-users] What about the Remember me widget? What it serves for? Is useful?

2010-03-30 Thread Gábor Fási
It is not the browser's remember password feature. If checked, the plugin will set a cookie for a longer period, that kinda acts like a long-term sessionid cookie. It means the user will not need to log in, even after the browser is closed and the session cookie is deleted. On Tue, Mar 30, 2010

Re: [symfony-users] What about the Remember me widget? What it serves for? Is useful?

2010-03-30 Thread Daniel Lohse
No, it sets a cookie with a configurable lifetime (standard is 14 days) and automatically logs the user in to your app (only if he didn't log out). It's actually a pretty good example for a symfony filter (not filter form, mind you :)). And no, the password is not saved anywhere in this

Re: [symfony-users] What about the Remember me widget? What it serves for? Is useful?

2010-03-30 Thread Daniel Lohse
Ah, you beat me to it! :) Sent from my iPhone On Mar 30, 2010, at 5:42 PM, Gábor Fási maerl...@gmail.com wrote: It is not the browser's remember password feature. If checked, the plugin will set a cookie for a longer period, that kinda acts like a long-term sessionid cookie. It means the user