Hello,
I am having the same issue with MediaWiki v1.27.1 running in IIS on Windows 2012 R2. I downloaded and untar'd the file to C:\inetpub\wwwroot\mediawiki\extensions\LdapAuthentication. The moment I uncomment the code below, all of the MediaWiki pages won't load and stay blank (white). I even ran php maintenance/update.php after making the changes to no avail. Thoughts? Is something up with my config? See below. I have to comment out all of the LDAP-related text below for any of the MediaWiki pages to load again.
# Enabled extensions. Most of the extensions are enabled by adding
# wfLoadExtensions('ExtensionName');
# to LocalSettings.php. Check specific extension documentation for more details.
# The following extensions were automatically enabled:
wfLoadExtension( 'PdfHandler' );
wfLoadExtension( 'LdapAuthentication' );
# End of automatically generated settings.
# Add more configuration options below.
require_once( “$IP/extensions/LdapAuthentication/LdapAuthentication.php” );
$wgAuth = new LdapAuthenticationPlugin();
$wgLDAPDomainNames = array( “myserver” );
$wgLDAPServerNames = array( “myserver”=>”myserver.www.domain.domain.com” );
$wgLDAPBaseDNs = array( “myserver”=>”dc=myserver,dc=www,dc=domain,dc=domain,dc=com” );
$wgLDAPSearchStrings = array(“myserver” => “mydomain\\USER-NAME”);
$wgLDAPSearchAttributes = array( “myserver”=>”sAMAccountName” );
$wgLDAPLowerCaseUsername = array( “myserver”=>true );
$wgLDAPGroupUseFullDN = array( “myserver”=>true );
$wgLDAPGroupsUseMemberOf = array( “myserver”=>true );
$wgLDAPGroupObjectclass = array( “myserver”=>”group” );
$wgLDAPGroupAttribute = array( “myserver”=>”member” );
$wgLDAPGroupSearchNestedGroups = array( “myserver”=>true );
$wgLDAPGroupNameAttribute = array( “myserver”=>”cn” );
$wgLDAPPreferences = array( “myserver”=>true );
$wgLDAPDisableAutoCreate = array( “myserver”=>false );
$wgMinimalPasswordLength = 1;
$wgLDAPUseSSL = false;
$wgLDAPEncryptionType = array( “myserver”=>”clear” );
$wgUseLocal = false;