[openupload-devel] Solved problems with Active Directory authentication
Status: Beta
Brought to you by:
tsdogs
|
From: Sergio F. M. <sfm...@gm...> - 2011-01-13 17:02:55
|
I've found a problem with Active Directory authentication that is not really a problem. $CONFIG['ldap']['user'] seems to refer to AD user/uid name but I have found that it refers to RDN (friendly name). So if you have an AD user which login name is "temp" but it's friendly name is "temporary user", you should use "temporary user" as $CONFIG['ldap']['user'] parameter. This is due to the ldap_bind function used in "ldap.inc.php". As defined in its manual, the user name refers to RDN. http://php.net/manual/en/function.ldap-bind.php |