The Symfony security component is a standalone library that can be used outside of Symfony2 projects.
I read here how to check the login status of an user by inside a twig template for a Symfony2…
symfony login symfony-securityI'd like to log the user in right after the registration process, without passing by the login form. Is this …
php symfony authentication symfony-securityIn Symfony 2 you can set up a target for the logout so that after logout you will be redirected to /…
symfony redirect symfony-2.1 symfony-securityi create service but it doesn't work services: redirectionListener: class: Front\EcommerceBundle\Listener\RedirectionListener arguments: ["@service_container","@session"] tags: - { …
php symfony fosuserbundle symfony-securityFirst off, I'm not using FOSUserBundle and I can't because I'm porting a legacy system which has its own Model …
security symfony roles symfony-2.1 symfony-securityI'm defining security for my website in security.yml - { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/register, role: …
php symfony symfony-securityI have two firewalls: api (for API calls) main (for everything else) My client app login happens via the main …
symfony firewall symfony-security