confucious wrote:
cant access the admin - config menu to disable ldap login either.
To turn off ldap integration and use the built in password edit the include_config.php file.
Set:
Code:
$use_pass = 'y';
$use_ldap_login = 'n';
confucious wrote:
my ldap account has go no permissions to openaudit other than browse.
Admin Ldap access works by comparing the logon user's group membership to a list defined in include_config.php.
Set the following array lists as appropriate and then enable ldap login again if you've disabled it as above:
Code:
$admin_list = Array('Domain Admins','other group name for admin access','etc...');
$user_list = Array('Domain Users','some other group name for user access','etc...' );