I\'m trying to use the new LdapUserProvider in Symfony 2.8. I believe I have configured everything per the docs.
My user can successfully authenticate, and then gets red
Finally I found what was the problem.
You have to chain the UserProvider:
UserProvider
chain_provider: chain: providers: [in_memory, app_users] in_memory: memory: ~ app_users: ldap: .....