Possible Duplicate:
Subversion error: Repository moved permanently to please relocate
I cannot check out my SVN repository. I think I have my config file written correctly:
# <!-- Begin SVN Config -->
    <VirtualHost *:80>
        Alias svn /
        ServerName svn.sachemsoftworks.com
        DocumentRoot /svn/
        ServerAdmin webmaster@sachemsoftworks.com
        <Location /svn>
            DAV svn
            SVNParentPath /svn/
            AuthType Basic
            AuthName "Sachem Softworks Projects"
            AuthUserFile /svn/.dav_svn.passwd
            Require valid-user
        </Location>
    </VirtualHost>
# <!-- /End SVN Config -->
Is there anything wrong with this config? The exact error I get when performing a checkout is:
svn: Repository moved permanently to 'http://svn.sachemsoftworks.com/blackoutMgr/'; please relocate
I don't really understand what the problem is but if I try to browse the repository in a browser it works perfectly fine.