Quote:
Originally Posted by Jimbot
For this to work you'll need the following files. They go in the following locations:
./includes/xml/hooks_ldap_auth.xml
./includes/devtools.php
A big thanks to everyone who has contributed to this solution: kpatten, haqa, malcolmx and zemic.
|
Thanks to everyone for their excellent work!
I have successfully implemented the above version on vBulletin 4.1.10
With regard to this problem:
Quote:
Originally Posted by kpatten
1. This plugin doesn't seem to work if your Search Base DN begins with a DN in AD. You must have your search base begin with an OU. This means that if you have multiple OU's at the top level of AD that contain users, you may have a problem.
|
I have managed to get ldap_search to properly recurse through the sub-OU's on a Server 2008 DC running in 2008/2003 mixed mode by doing the following:
After:
PHP Code:
// Enable LDAP version 3
ldap_set_option($ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
Add:
PHP Code:
ldap_set_option($ldapConnection, LDAP_OPT_REFERRALS, 0);
Now if I set the Base DN to DC=domain,DC=com it will find users in all OU's in the domain.
Hope this helps someone
Alex