I'm using Symfony 2.1-dev and am having problems when authenticate users using a form.
The problem:
When authenticating I get "Wrong credentials" error.
I put some logging into the entity and as the logged string does not show up I suppose that the entity is not being used.
Anyway, the log shows that a query is being made to the correct table.
What can I be missing?
Thanks in advance for any help
Edit:
I now managed to find out that the problem is the password.
For some reason it seems that when encoding the password from the fixtures, these get shortened to 60 chars, while when authenticating the length of the resulting string is 88 chars.
Why could that be?