LDAP Integration in Symfony2

I am new to symfony and LDAP. Is there a walkthrough or video for integrating LDAP into symfony2?

+4
source share
3 answers

I don't know a single tutorial or video about LDAP in Symfony2, but here are 2 packages that I have used in many projects:

+6
source

In later versions of Symfony2, LDAP support should already be there. If you are limited to an older version, consider using the DapsBundle , as its functionality has a pattern after the Symfony2 update path, which means that it should be easier for you when you upgrade the Symfony2 version .. You can learn more about your blog at http: //robertelwell.info/blog/daps-ldap-symfony2/ .

+1
source

FOSUserBundle is a database authentication set for users, if you do not want to manage your users with a database, then you need to do a little customization to break the dependency in FR3DLdapBundle.

Writing your own UserManager and setting it up in the configuration should be sufficient.

UserManager is used to create a user instance for the first time.

0
source

All Articles