Tagged Questions
0
votes
1answer
153 views
Symfony2 custom authentication : user logged but not authenticated
I've been working on a custom authentication system with Symfony 2.1. After a lot of battle with Symfony I've got something that working but not fully...
Problem : After the login (through a form), ...
0
votes
1answer
105 views
System profiler get me user logged in but not authenticated
I thought I was finally able to properly manage the login with Symfony 2. But when I get redirected to another page after login, the System Profiler gives me back that the user is logged in but not ...
2
votes
1answer
72 views
Custom Authentication which doesn't need UserProvider
I looked for a solution on the web for my configuration but I can't find something which satisfies my needs.
So far, I have been working on this for 3 full days, and I can't make it works properly, I ...
3
votes
1answer
136 views
How to modify current user's attributes and persist them through the entire session
I'm authenticating my users using IMAG/Ldap-Bundle (BorisMorel/LdapBundle) and I can't persist any changes made to my User to my LDAP server. But whenever a user logs in, I need to check some stuff ...
0
votes
2answers
263 views
trigger authentication success event after registration in symfony2.1
After registration I ensure the user is logged in as follows:
$token = new UsernamePasswordToken($user, null, 'secured_area', $user->getRoles());
...
1
vote
1answer
190 views
LogIn in Controller with FOSUserBundle
I'm working on a project where User can log in with a certificate.
So if there is a valid certificate in a POST request I want to login the user in a controller and redirect to the home site.
I'm ...
0
votes
1answer
117 views
Symfony login form validation
How I can validate login form BEFORE login_check? It's important to tell user, that email is invalid, rather then "bad credentials".
Should i use event listeners? Or simple redirect to login_check in ...
0
votes
2answers
189 views
Symfony2 set user role on login
I want to use a single form to login normal users and admins, i have a flag on entity 'isAdmin'. If it's an admin redirect to panel and set ROLE_ADMIN, if not redirect to site and set ROLE_USER.
this ...
1
vote
1answer
135 views
Symfony2: How to retrieve the UserChecker in a controller?
The UserChecker in Symfony2 is a necessary class for user authentication.
Let's suppose you need to authenticate a user just inside a controller, you should define a function like the following:
...
0
votes
2answers
270 views
Symfony2.1 and AdvancedUserInterface: customization of the login error messages from UserChecker
How to customize in a Symfony2.1 app the error messages provided by the UserChecker class when using an User class that implements AdvancedUserInterface?
These messages are provided for instance when ...
1
vote
2answers
2k views
Symfony2.1 - HWIOAuthBundle and google oauth authentication
I am trying to setup Symfony2.1 with HWIOAuthBundle to handle google oauth authentication.
I have followed manual instructions in bundle description, but still something is missing. When I visit an ...
0
votes
1answer
244 views
Authentication using Symfony 2.1-dev (Wrong credentials)
I'm using Symfony 2.1-dev and am having problems when authenticate users using a form.
First of all my code
The problem:
When authenticating I get "Wrong credentials" error.
I put some logging into ...
