LDAP woes

In this board you can talk about general questions about phpMyFAQ

Moderator: Thorsten

Post Reply
twhalen
Posts: 1
Joined: Thu Aug 17, 2017 9:05 pm

LDAP woes

Post by twhalen »

Good day!

I am working on implementing phpMyFaq on my company's domain but I can't seem to get it working.

I know i'm reaching the domain controller, but when i enter my windows credentials i just get username or password invalid.
The following is an example user DN taken from AD.


CN=N123456,OU=Fijitsu Support,OU=Users,OU=Workers Finance Group,DC=admin,DC=internal,DC=peoplesbank,DC=com

the following is what i have in the ldap configuration. I'm having trouble figuring out whats wrong here but I have a feeling it has something to do with the ldap_base


$PMF_LDAP['ldap_server'] = 'domainctrlr';
$PMF_LDAP['ldap_port'] = '389';
$PMF_LDAP['ldap_user'] = 'admin';
$PMF_LDAP['ldap_password'] = 'passwd';
$PMF_LDAP['ldap_base'] = 'OU=Users,OU=Workers Finance Group,DC=admin,DC=internal,DC=peoplesbank,DC=com';
Post Reply