2016-03-02 182 views
1

每次我試圖登錄到DokuWiki的與我的LDAP憑據我收到以下錯誤: enter image description here如何配置驗證LDAP插件的Dokuwiki

然而,一旦當我試圖用互聯網登錄資源管理器,而不是Chrome瀏覽器,我成功登錄了,但從未再發生過。

有人請幫我配置dokuwiki使用AuthLDAP插件驗證LDAP憑證的用戶。

請參閱的conf/local.php文件的內容:

$conf['title'] = 'SomeNameOfDokuWiki'; 
$conf['license'] = '0'; 
$conf['useacl'] = 1; 
$conf['authtype'] = 'authldap'; 
$conf['passcrypt'] = 'md5'; 
$conf['superuser'] = 'xander'; 
$conf['disableactions'] = 'register'; 
$conf['proxy']['user'] = 'SomeUserName'; 
$conf['proxy']['pass'] = 'SomeEncryptedPassword'; 
$conf['plugin']['authldap']['server'] = 'ldap://some.local.ip.address.129:389'; 
$conf['plugin']['authldap']['usertree'] = 'ou=Users,dc=example,dc=max,dc=net'; 
$conf['plugin']['authldap']['grouptree'] = 'ou=Groups,dc=xander,dc=max,dc=net'; 
$conf['plugin']['authldap']['userfilter'] = '(&(cn=%{user})(objectClass=inetOrgPerson))'; 
$conf['plugin']['authldap']['groupfilter'] = '(&(objectClass=posixGroup)(|(gidNumber=%{gid})(memberUID=%{user})))'; 
$conf['plugin']['authldap']['version'] = 3; 
$conf['plugin']['authldap']['bindpw'] = 'SomeBindPassword'; 
$conf['plugin']['authldap']['userkey'] = 'cn'; 
$conf['plugin']['authldap']['debug'] = 1; 
$conf['plugin']['authldap']['modPass'] = 0; 

我敢肯定,下面的查詢是正確的(我檢查他們通過phpldapadmin):

(&(cn=%{user})(objectClass=inetOrgPerson)) 
(&(objectClass=posixGroup)(|(gidNumber=%{gid})(memberUID=%{user}))) 

謝謝。

+0

你有沒有想過這個? –

回答

0

我想也許你錯過了這一點。

$conf['plugin']['authldap']['binddn'] = 'CN=ad user with enough rights to see other accounts,CN=Users,DC=yourdomain,DC=com';