My Symfony2 application displays a main page, and from there on it primarily uses AJAX requests to display content to the user via modals.
I\'ve noticed that after t
I set remember me cookie set to default, and then in security.yml
security: firewalls: main: form_login: remember_me: true remember_me: key: mycookie lifetime: 2592000 # 30 days path: / domain: ~ always_remember_me: true