Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn error when checkoutng: "Not authorized to open root of edit operation"

Tags:

svn

I have svnserve with current settings:

svnserve.conf:

anon-access = read #I also tried anon-access = none or comment this line
auth-access = write
password-db = passwd
authz-db = authz

authz:

[/]
foo = rw

[/Subdir]
foo = rw
bar = rw

If user 'bar' try checkout /Subdir folder then he get error: "Not authorized to open root of edit operation". User foo can do it correctly.

What I can do with this trouble?

like image 492
zzc Avatar asked Mar 23 '11 20:03

zzc


1 Answers

I found out that removing the Satisfy Any from my apache configuration fixed everything.

like image 81
Alberto Avatar answered Oct 05 '22 03:10

Alberto