How can I get the php_ldap.dll and php_openssl.dll?
What do I have to install? For example an LDAP server on my Apache server or something other extensions do I have to install?
Right on the documentation page:
http://www.mediawiki.org/wiki/Extension:LDAP_Authentication#Windows_conf iguration
I used the following configuration to get regular authentication working first. Despite it is NOT working:
require_once 'LdapAuthentication.php'; $wgAuth = new LdapAuthenticationPlugin(); $wgLDAPDomainNames = array( 'KAR' ); $wgLDAPServerNames = array( 'KAR' => 'aab.kar.local', ); $wgLDAPSearchStrings = array( 'KAR' => 'KAR\USER-NAME', ); $wgLDAPEncryptionType = array( 'KAR' => 'ssl', ); $wgLDAPUseLocal = false; $wgMinimalPasswordLength = 1;
You've posted the same thing a few times. I need more information than this to help you. If you don't have PHP configured correctly, fix that problem. For any further help I'll need your debug info; please set:
$wgLDAPDebug = 4;
And post the output, snipping out anything sensitive.
V/r,
Ryan Lane