I need your help, maybe someone knows my problem...
I'm starting to use Subversion. I have Win 2003 Server and installed apache http server 2.0.59 after that - svn 1.4.3 and tortoiseSVN 1.4.3. I've read carefully: http://svn.spears.at/ found at this forum, but still can't properly access SVN from local network. I write in mozilla firefox: http://192.168.0.222:20080/svn/Java%20T ... ORganizer/ and just get this error:
Code: Select all
<D:error>
<C:error/>
<m:human-readable errcode="720002">
Could not open the requested SVN filesystem
</m:human-readable>
</D:error>Code: Select all
[Fri Jun 08 18:35:32 2007] [error] [client 192.168.0.150] (20014)Error string not specified yet: Can't open file 'D:\\SVN\\Java Team Repository\\format': The system cannot find the file specified.
[Fri Jun 08 18:35:32 2007] [error] [client 192.168.0.150] Could not fetch resource information. [500, #0]
[Fri Jun 08 18:35:32 2007] [error] [client 192.168.0.150] Could not open the requested SVN filesystem [500, #720002]
[Fri Jun 08 18:35:32 2007] [error] [client 192.168.0.150] Could not open the requested SVN filesystem [500, #720002]2. Here is my part of apache conf-file:
Code: Select all
Listen 20080
...
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dav_svn_module "C:/Program Files/Subversion/bin/mod_dav_svn.so"
LoadModule authz_svn_module "C:/Program Files/Subversion/bin/mod_authz_svn.so"
...
<Location /svn>
DAV svn
SVNListParentPath on
SVNParentPath "D:\SVN"
AuthType Basic
AuthName "Subversion repositories"
AuthUserFile passwd
#AuthzSVNAccessFile d:/svnetc/svn-acl
Require valid-user
</Location>And by the way - the second question please: as you can see, the AuthzSVNAccessFile parameter is commented. Because when I uncomment it, Apache gives me that response on my request(http://192.168.0.222:20080/svn/Java%20T ... ORganizer/):
Code: Select all
Forbidden
You don't have permission to access /svn/Java Team Repository/SITORganizer/ on this server.
Apache/2.0.59 (Win32) SVN/1.4.3 DAV/2 Server at 192.168.0.222 Port 20080Code: Select all
[error] [client 192.168.0.150] Access denied: 'j-pro' GET Java Team Repository:/SITORganizerCode: Select all
#
# specify groups here
#
[groups]
team1 = j-pro, leoha
#
# team1 group has a read/write access to project1 repository
# all subdirectories
# all others have read access only
#
#[SITOrganizer:/]
#@team1 = rw
#* = r
[SITOrganizer:/]
j-pro = rw
* = rCan you help me in these two questions? Especially the first one please. Thank you very much in advance!