Setup : Kolab + Tikiwiki
Albrecht Dreß
albrecht.dress at lios-tech.com
Mon Jan 25 13:52:53 CET 2010
kiser Caesar schrieb am Montag 25 Januar 2010 13:10:
> I send again my email, I hope to get some help...
> I tried several settings to setup tikiwiki working with Kolab but without succes...
Do you use Apache authentication, or does the software come with it's own LDAP client? I use Apache's built-in one for several web sites (including trac, viewvc, etc), which works flawlessly, e.g.:
AuthType Basic
AuthBasicProvider ldap
AuthName "My Authentication Message"
AuthLDAPUrl "ldap://my-server.de/dc=my-domain,dc=de?uid?sub?(objectClass=inetOrgPerson)"
AuthzLDAPAuthoritative off
AuthLDAPGroupAttribute memberUid
AuthLDAPGroupAttributeIsDN off
Require valid-user
I also use Dokuwiki which has its own ldap stuff:
$conf['authtype'] = 'ldap';
$conf['auth']['ldap']['server'] = 'ldap://my-server.de:389';
$conf['auth']['ldap']['usertree'] = 'dc=my-domain,dc=de';
$conf['auth']['ldap']['grouptree'] = 'ou=SmbGroups,cn=internal,dc=my-domain,dc=de';
$conf['auth']['ldap']['userfilter'] = '(&(uid=%{user})(objectClass=posixAccount))';
$conf['auth']['ldap']['groupfilter'] = '(&(objectClass=posixGroup)(memberUID=%{user}))';
I would try first to authenticate without ldap/ssl, just if there is a problem with accepting the certificate.
Hth, Albrecht.
More information about the users
mailing list