I am trying to use internal PHP LDAP authentication for the MRBS but keep receiving unknown user when I go to log in. Below is my current config:
//Authentication Method LDAP
$auth["session"] = "php";
$auth["type"] = "ldap";
//'auth_ldap' configuration settings
// Where is the LDAP server
$ldap_host = "10.13.4.6";
// If you have a non-standard LDAP port, you can define it here
//$ldap_port = 389;
//If you want to use LDAP v3, change the following to true
$ldap_v3 = false;
//If you want to use TLS, change following to true
$ldap_tls = false;
// LDAP base distinguish name
// See AUTHENTICATION for details of how check against multiple base dn's
$ldap_base_dn = "OU=RAC,DC=rac,DC=local";
// Attribute within the base dn that contains the username
$ldap_user_attrib = "cn";
$ldap_dn_search_attrib = "cn";
View and moderate all "support-requests Discussion" comments posted by this user
Mark all as spam, and block user from posting to "DO NOT USE - Support Requests"
how about the password?