
June 21st, 2012, 07:11 AM
|
|
Registered User
|
|
Join Date: May 2012
Posts: 3
Time spent in forums: 33 m 34 sec
Reputation Power: 0
|
|
Just solved it! The problem was I am using LDAPv2 code while running LDAPv3. I added the code
Code:
ldap_set_option($ldapconn, LDAP_OPT_PROTOCOL_VERSION, 3);
after the connection tag and all was good!
|