SVN Authorization
        Posted  
        
            by Weslei
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Weslei
        
        
        
        Published on 2010-04-07T18:46:27Z
        Indexed on 
            2010/04/08
            20:03 UTC
        
        
        Read the original article
        Hit count: 338
        
I am trying to setup SVN authorization (authentication works fine already) and my AuthzSVNAccessFile looks like the following:
[groups]
todos = user1, user2
proj = user1
[/]
@todos = r
[/myproj]
@proj = rw
However, I can checkout the content of proj (as user1) but I can't commit to it... If i change the file changing to the following:
[groups]
todos = user1, user2
proj = user1
[/]
@todos = rw
[/myproj]
@proj = rw
I can successful commit... Anyone knows what's wrong with my access file? I am using SVN with SVNParentPath, to point to a folder containing multiple repositories.
The errors it gives are:
svn: Error: Server sent unexpected return value (403 Forbidden) in response to CHE
CKOUT
Thanks.
© Stack Overflow or respective owner