On Jan 5, 2006, at 14:34, Maninder Singh(SDG) wrote:
[snip]
> I get the following error when I try to check-out the code by
> specifying: http://myserver:8000/svn
>
> ================================== ERROR
> ==============================
> "Error: PROPFIND request failed on '/svn'
> Error: PROPFIND of '/svn': 403 Forbidden (http://10.91.0.217:8000)"
> ======================================================================
> =
>
> The Apache file contains the following entry:
> <Location /svn>
> DAV svn
> SVNParentPath /usr/local/svn
> # how to authenticate a user
> AuthType Basic
> AuthName "Subversion repository"
> AuthUserFile /usr/local/apache2/svnpasswd
>
> # For any operations other than these, require an authenticated
> user.
> <LimitExcept GET PROPFIND OPTIONS REPORT>
> Require valid-user
> </LimitExcept>
> </Location>
Is /usr/local/svn a repository (that is, did you run "svnadmin
create /usr/local/svn"), or is it a directory which contains several
repositories (that is, "mkdir /usr/local/svn; svnadmin create /usr/
local/svn/repo1")?
If the former, you need to change SVNParentPath to read SVNPath.
If the latter, you need to specify in the URL the name of the
repository you want to check out, for example http://myserver:8000/
svn/repo1
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Jan 5 15:09:34 2006