Page 1 of 1

Problem Mantis + LDAP

Posted: 20 Oct 2006, 14:11
by brtn
Dears,

I have a problem, I want to autenticate Mantis on LDAP

The configuration was set to:

#LDAP Login
$g_login_method = LDAP;
$g_ldap_server = '192.168.80.185';
$g_ldap_port = '389';
$g_ldap_root_dn = 'dc=development,dc=ldap';
#$g_ldap_organisation = "";
$g_ldap_uid_field = 'uid';
$g_ldap_bind_dn = 'cn=admin,dc=development,dc=ldap';
$g_ldap_bind_passwd = 'mudar123';
$g_use_ldap_email = OFF; # Should we send to the

The Message error was return:

APPLICATION ERROR #1400

LDAP Authentication Failed

Please use the "Back" button in your web browser to return to the previous page. There you can correct whatever problems were identified in this error or select another action. You can also click an option from the menu bar to go directly to a new section.

On the another WEB TOOLS the LDAP is working, but with Mantis doesn't work.

Could you Help please...

I Need to configured Mantis to finish the LDAP migration.

Posted: 31 Oct 2006, 11:38
by C4Vette
I have LDAP working against eDirectory with the following settings:

$g_login_method = LDAP;
$g_ldap_server = 'ldaps://localhost/';
$g_ldap_port = '636';
$g_ldap_root_dn = 'ou=users,o=organisation';
$g_ldap_organization = '';
$g_ldap_uid_field = 'cn';
$g_ldap_bind_dn = 'cn=user,o=organisation';
$g_ldap_bind_passwd = 'password';
$g_use_ldap_email = OFF;

All text in brown has been changed for privacy.