[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Aw: No author problem for svn server

From: Andreas Stieger <Andreas.Stieger_at_gmx.de>
Date: Fri, 20 Mar 2015 16:54:11 +0100

Hi,

Your configuration requires a password for reading, but everyone (!) can commit.
This should be the other way around, e.g.
<LimitExcept GET PROPFIND OPTIONS REPORT>

See https://subversion.apache.org/faq.html#no-author why you have no author without auth challenge.
 
Andreas
 

Gesendet: Freitag, 20. März 2015 um 16:49 Uhr
Von: "wangji_at_htche.com" <wangji_at_htche.com>
An: users <users_at_subversion.apache.org>
Betreff: No author problem for svn server

Hi there,
 
I'm recently encounting a weird problem, not sure when it started, my svn server doesn't log the author when committing. We are a team, but it forgets most of the members, only one person exception, there's no different between this person and others. though every one is able to access and commit as usual, My svn server authenticates against LDAP and no anonymous access allowed. here is the config and log:
 
--------------
<VirtualHost *:80>
  ServerAdmin svnadmin_at_abc.com
  DocumentRoot /var/www/svn
  ServerName svn.abc.com
  ErrorLog logs/svn.int.abc.com-error_log
  CustomLog logs/svn.int.abc.com-access_log common

  <IfModule mod_authz_ldap.c>
    <Location /svn>
      DAV svn
      SVNParentPath /var/www/svn
      SVNReposName "Subversion Repository"

      # SSLRequireSSL
      AuthBasicProvider ldap
      AuthType Basic
      AuthzLDAPAuthoritative on
      AuthName "Authorization Realm"
      AuthLDAPURL "ldaps://ldap.abc.com/ou=people,dc=abc,dc=com?uid?sub?(objectClass=*)" NONE
      AuthLDAPBindDN uid=svnadmin,ou=people,dc=abc,dc=com
      AuthLDAPBindPassword RjOmm4JIM8VNuecbw7xZ 
      <Limit GET PROPFIND OPTIONS REPORT>
        Require valid-user
        require ldap-group cn=svnusers,ou=groups,dc=abc,dc=com
        AuthLDAPGroupAttribute memberUid
        AuthLDAPGroupAttributeIsDN off
      </Limit>
    </Location>
  </IfModule>
</VirtualHost>
--------------------
 
$ svn log
...
r12 | (no author) | 2015-02-12 10:33:15 +0800...
 
------------
 
Do I forget anything?
 
Jeff
 
 
 
 
Received on 2015-03-20 16:54:43 CET

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.