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_at_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_at_karmwebserv local]# svn co http://localhost/repos wc
> svn: PROPFIND request failed on '/repos'
> svn: PROPFIND of '/repos': 403 Forbidden (http://localhost)
> [root_at_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
Received on Thu Jul 13 22:57:13 2006