I'm trying to set up a 2nd repository for access thru Apache using TortoiseSVN 
(my subversion server is Windows). While Tortoise lets me access the first 
repository, I can't find a way to open the second one. Any help is greatly 
appreciated. 
The first repository is accessible with no problem thru this URL: 
http://myurl.com/svn/ 
For the 2nd repository, I should be able to access it with: 
http://myurl.com/sfapp/ 
but it returns this error message: 
Error * PROPFIND request failed on '/sfapp' Could not open the requested SVN 
filesystem 
I checked the filesystem permissions, but don't see anything out of the 
ordinary. My config files are pasted below. In both files, the top entry works 
and the second one is what returns an error 
------------------------------- 
subversion.config (apache): 
<Location /svn> 
DAV svn 
SVNPath c:/SvnSource/Main 
AuthType Basic 
AuthName "Subversion repository" 
AuthUserFile c:/SvnSource/auth-file 
Require valid-user 
AuthzSVNAccessFile c:/SvnSource/svn-acs 
</Location> 
<Location /sfapp> 
DAV svn 
SVNPath c:/SvnSource/SFapp 
AuthType Basic 
AuthName "Subversion repository" 
AuthUserFile c:/SvnSource/auth-file 
Require valid-user 
AuthzSVNAccessFile c:/SvnSource/svn-acs 
</Location> 
--------------------------------- 
svn-access file (subversion): 
# 
# specify groups here 
# 
[groups] 
team1 = harry, sally 
# 
# main repository 
# 
[svn:/] 
@team1 = rw 
* = r 
# 
# app repository 
# 
[sfapp:/] 
@team1 = rw 
* = r 
-------------------------------------------- 
my directories with repositories set up: 
c:/SvnSource/Main 
c:/SvnSource/SFapp
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: users-help@tortoisesvn.tigris.org
Received on Tue Feb 13 17:05:26 2007