You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Karmjeet Sandhu <ks...@dynegent.com> on 2006/07/13 02:59:08 UTC

403 and 405 Errors

I am having difficulty doing a network checkout from my repository (/data/DTIDEV)

Here are some snippets from my httpd.conf

LoadModule dav_svn_module     modules/mod_dav_svn.so
LoadModule authz_svn_module   modules/mod_authz_svn.so

User apache
Group apache

ServerName svn.dti.org

<Location /repos>
        DAV svn
        SVNParentPath /data/DTIDEV
</Location>


here are the commands and corresponding errors:

[root@karmwebserv local]# svn co http://svn.dti.org/repos wc
svn: PROPFIND request failed on '/repos'
svn: PROPFIND of '/repos': 405 Method Not Allowed (http://svn.dti.org)
[root@karmwebserv local]# svn co http://localhost/repos wc
svn: PROPFIND request failed on '/repos'
svn: PROPFIND of '/repos': 403 Forbidden (http://localhost)
[root@karmwebserv local]# svn co http://karmwebserv/repos wc
svn: PROPFIND request failed on '/repos'
svn: PROPFIND of '/repos': 403 Forbidden (http://karmwebserv)

I cant seem to resolve this issue - please help.

-Karm


Re: 403 and 405 Errors

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Jul 13, 2006, at 04:59, Karmjeet Sandhu wrote:

> <Location /repos>
>         DAV svn
>         SVNParentPath /data/DTIDEV
> </Location>
>
>
> here are the commands and corresponding errors:
>
> [root@karmwebserv local]# svn co http://svn.dti.org/repos wc
> svn: PROPFIND request failed on '/repos'
> svn: PROPFIND of '/repos': 405 Method Not Allowed (http://svn.dti.org)
> [root@karmwebserv local]# svn co http://localhost/repos wc
> svn: PROPFIND request failed on '/repos'
> svn: PROPFIND of '/repos': 403 Forbidden (http://localhost)
> [root@karmwebserv local]# svn co http://karmwebserv/repos wc
> svn: PROPFIND request failed on '/repos'
> svn: PROPFIND of '/repos': 403 Forbidden (http://karmwebserv)

"SVNParentPath /data/DTIDEV" means that you have several repositories  
inside /data/DTIDEV, which you created for example with "svnadmin  
create /data/DTIDEV/foorepo" and "svnadmin create /data/DTIDEV/ 
barrepo". If this is what you have, then you need to indicate which  
repository you want to check out:

svn co http://svn.dti.org/repos/foorepo foowc

If instead /data/DTIDEV is a single repository which you created with  
"svnadmin create /data/DTIDEV" then you should use "SVNPath /data/ 
DTIDEV" instead of "SVNParentPath /data/DTIDEV".

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org