You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Had trouble doing a full domain search on Windows 2003 AD server. Though the ldap_search says it should be doing subtree searches, it did not do so on my setup.
Had trouble doing a full domain search on Windows 2003 AD server. Though the ldap_search says it should be doing subtree searches, it did not do so on my setup.
From comments on http://www.php.net/manual/en/function.ldap-search.php
If you add the following options, AD will do the subtree search properly.
ldap_set_option($connect, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($connect, LDAP_OPT_REFERRALS, 0);
Could these be added as setting options?
The text was updated successfully, but these errors were encountered: