diff options
-rw-r--r-- | modules/mediawiki/templates/LocalSettings.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/mediawiki/templates/LocalSettings.php b/modules/mediawiki/templates/LocalSettings.php index 5e4331c7..a84857c8 100644 --- a/modules/mediawiki/templates/LocalSettings.php +++ b/modules/mediawiki/templates/LocalSettings.php @@ -125,7 +125,16 @@ $wgCacheEpoch = max( $wgCacheEpoch, gmdate( 'YmdHis', @filemtime( __FILE__ ) ) ) require_once 'extensions/LdapAuthentication/LdapAuthentication.php'; $wgAuth = new LdapAuthenticationPlugin(); - + +## uncomment to debug +# $wgLDAPDebug = 10; +# $wgDebugLogGroups["ldap"] = "/tmp/wiki_ldap.log"; +# +# $wgDebugLogFile = "/tmp/wiki.log"; +# + +$wgLDAPUseLocal = false; + $wgLDAPDomainNames = array( 'ldap'); #TODO make it workable with more than one server |