I get the following error when attempting to export my SVN repo files from my development server which is running SVN and WebDAV to my stage server which is running on a hostgator account.
Here is the full error:
svn: PROPFIND request failed on '/svn/egr/trunk'
svn: PROPFIND of '/svn/egr/trunk': 301 Moved Permanently (http://some.no-ip.info)
Here is the SVN command I am using:
svn export http://some.no-ip.info/svn/egr/trunk . --force --username myusername
My WebDAV virtual host configuration looks like this:
<VirtualHost *:80>
ServerName some.no-ip.info
DocumentRoot /var/svn/
<Directory /var/svn/>
Options Indexes MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
Alias /svn "/var/svn/"
<Location "/svn">
DAV On
DavDepthInfinity on
SVNParentPath /var/svn/
AuthType Basic
AuthName "SVN Login"
AuthUserFile /etc/apache2/dav_svn.passwd
Require valid-user
</Location>
</VirtualHost>
Before you ask yes I plan on using this for multiple projects that already exist within /var/svn so this is why I have attempted configuring it with SVNParentPath. A decent amount of stuff comes back in google regarding this error, but none of the solutions seem to work for me.
Aliasdirective. – noodl Jan 22 '11 at 18:29