> This is my first post, and I need help to do authenticate mediawiki with my 
> Active Directory.
>
> Windows Server 2008 with AD 2008.
>
> Today, I have the authentication with my ldap samba, but, we are change to 
> Active Directory...
>
> I try this lines in the LocalSettings.conf
>
> // LDAP integration - 
> http://www.mediawiki.org/wiki/Extension:LDAP_Authentication
> require_once( "$IP/extensions/LdapAuthentication.php" );
> $wgAuth = new LdapAuthenticationPlugin();
> $wgLDAPDomainNames = array("corp.com");
> $wgLDAPServerNames =array("corp.com" => "serverAD01 serverAD02");
> $wgLDAPSearchStrings = array("corp.com" => 
> "uid=USER-NAME,ou=MyUsers,dc=corp,dc=com");
> $wgLDAPEncryptionType = array("corp.com" => "ssl");
> $wgMinimalPasswordLength = 1;
> $wgLDAPBaseDNs = array("corp.com" => "ou=MyUsers,dc=corp,dc=com");
> $wgLDAPSearchAttributes = array("corp.com" => "sAMAccountName");
> $wgLDAPProxyAgent =  array("corp.com" => 
> "cn=read_ad,ou=People,dc=corp,dc=com");
> $wgLDAPProxyAgentPassword = array("corp.com" => '$passofreadad.,');
>

Does your AD server have SSL enabled? By default it isn't enabled. If
you do have it enabled, you should check to see if the SSL trust is
ok. You should also enable the debug log, so that you can more easily
find what is breaking.

- Ryan

_______________________________________________
MediaWiki-l mailing list
MediaWiki-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Reply via email to