6
votes
1answer
284 views

Silex / Symfony2 Remember Me Authentication User Interface RedBean Wrapper

I've been trying to use RedBean ORM (http://redbeanphp.com) to implement UserInterface and UserProviderInterface of the Silex Security Provider Package. Because of the way the RedBean ORM handles ...
0
votes
1answer
148 views

Symfony 2 & Remember me function

Having a strange problem that others don't seem to have. I can't get the "remember me" function working on my Symfony 2.1 app. I've tried local and deployed on a server, I've tried with and without ...
0
votes
0answers
113 views

symfony2 fosuserbundle remember_me cookie aftre register

In my registerAction i turned off the confirmation so if the user fills in the form correctly, it is authenticated. Does anyone know how to create rememberme cookie so as the user can stay ...
0
votes
0answers
44 views

Symfony2: Conflict between framework_session_lifetime and remeber me functionality

My site must deal with a cookie that has a long lifetime. For this reason, I have in my app/config/config.yml: framework: session: lifetime: 31104000 The site should have as well a ...
1
vote
0answers
71 views

Symfony2 and RememberMe token exception

We are building an application using Symfony2 framework. There is a custom authentication manager implemented which works fine, except when a user connects and select the 'Remember me' token. The ...
2
votes
3answers
141 views

Before-Action method in symfony2

I want to write a common code in my symfony2 application that should be executed before calling any action-method. How Can I do it? At the time of login-success, I am storing some data in session. If ...
-1
votes
1answer
102 views

Remember me and session in symfony2

I am storing some information related to logged user in session. If the user logged with remember me cookie, he didn't get data from the session. It is normal behavior. My question is how to solve the ...
0
votes
1answer
177 views

How to prolong the remember_me cookie on each request in Symfony2?

I use standard remember_me symfony feature, but it expires every period of time, set in config. E.g. I have lifetime set to 1800. Disregarding of what I do, it logs me off after 0.5 hours after last ...
2
votes
1answer
272 views

change remember me cookie lifetime dynamically

I am using Symfony2 framework with FOSUserBundle. I want to change the remember cookie lifetime dynamically: when the user clicks on a link for example. So I can't just change the value for ...
1
vote
1answer
868 views

Symfony2 remember me auhtentication

I have site with login form on homepage. Login form have remember_me feature. I can't figure out how to convert IS_AUTHENTICATED_REMEMBERED to IS_AUTHENTICATED_FULLY. I suppose I should use ...
4
votes
2answers
3k views

Create a symfony2 remember me cookie manually (FOSUserBundle)

Could somebody explain how you can manually create a remember me cookie in a controller? I want the users to stay logged in after they pressed the "register" button, without having to login with ...
7
votes
2answers
2k views

FOSUserBundle and remember me

I'm using a FOSUserBundle for authentication in Symfony2. Everything works fine except "remember me". My security.yml looks like this: security: providers: fos_userbundle: id: ...
3
votes
2answers
723 views

How can I listen for “remember me” reauthentication events in Symfony2?

Using “normal” — not “remember me” authentication — I can set a success and failure handlers, adding this to the security.yml file: form_login: # ... success_handler: authentication_handler ...
6
votes
3answers
2k views

Remember Me functionality not working in Symfony2

I have implemented remember me functionality in Symfony2. When I log in with remember me box checked, cookie named "REMEMBERME" gets created. That cookie is also available if I close browser and open ...
9
votes
1answer
1k views

How to make “remember me” work if session expires when browser is closed?

I set sessions to expire when browser closes in main config.yml: framework: session: default_locale: %locale% lifetime: 0 auto_start: true Then I set "remember ...