You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by 郑新星 <zh...@gmail.com> on 2006/09/12 10:47:52 UTC

cannot checkout from non-anonymous visit directory with valid user

Hi all, I got some problem

env:  MS Windows 2003,   Subversion 1.3.2

1. server:  svnserve -d -r f:\temp

2. repository: svnadmin create f:\temp\rep

3. config:

    1) f:\temp\rep\svnserve.conf
        anon-access = read
        auth-access = write
        password-db = passwd
        authz-db = authz

    2) f:\temp\rep\passwd
        harry = harryssecret

    3) f:\temp\rep\authz
        [/]
        harry = rw
        * =

4. import:  svn import f:\testproject -m "test" svn://127.0.0.1/rep

5. checkout: svn co svn://127.0.0.1/rep --username=harry --password=harryssecret

6. I got error: Not authorized to open root of edit operation

7. change  f:\temp\rep\svnserve.conf , get rid of anon-access = read:

        #anon-access = read
        auth-access = write
        password-db = passwd
        authz-db = authz

    or

        anon-access = none
        auth-access = write
        password-db = passwd
        authz-db = authz

8. everything is ok now


Is this a bug? I try the same steps under svn 1.4 and got the same result.

thanks.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org