well this is probably the right place to ask this question…
I have the LDAP auth file from GL FUsion and it does not seem to connect to our correctly set up OD server which it is sitting on…
the config is below…
can anyone point me to a proper config for this ?
Thanks…
// Basic LDAP variables
$_LDAP_CONF[‘user_ou’] = “People”;
$_LDAP_CONF[‘group_ou’] = “Group”;
$_LDAP_CONF[‘branch’] = “dc=server,dc=ourdomain,dc=co,dc=uk”;
$_LDAP_CONF[‘user_branch’] = “ou={$_LDAP_CONF[‘user_ou’]},” . $_LDAP_CONF[‘branch’];
$_LDAP_CONF[‘user_attributes’] = array(“uid”,”cn”,”ou”,”objectClass”,”shadowLastChange”,”loginShell”,”uidnumber”,”gidNumber”,”homeDirectory”,”gecos”,”userPassword”,”givenName”,”sn”,”mail”);
// LDAP server configuration
$_LDAP_CONF[‘servers’][0][‘bind_dn’] = “ou=users,dc=server,dc=ourdomanin,dc=co,dc=uk”;
$_LDAP_CONF[‘servers’][0][‘password’] = “”;
$_LDAP_CONF[‘servers’][0][‘host’] = “ldaps://server.ourdomain.co.uk”;
Comments are closed