This is probably a case of threadromancy for which I apologise.

However, the fix for the 403 (assuming no bugs in the subversion server or 
client) is to make sure that you have set the Allow from field in the 
correct section of your apache2 mod_ssl and make sure your dav_svn module 
configuration is correctly allowing usernames and passwords for the / and 
the svn home locations


<VirtualHost *:443>
        ServerAdmin webmaster@localhost
        ServerName  svn.mycompany.com
        
        DocumentRoot /var/www/

        <Location />
                Order Deny,Allow
                Deny from all
                Allow from 127.0.0.1/8
                Allow from 10.0.1.2
                Allow from 10.0.1.3
        </Location>

        <Location /svn>
     
               Allow from 10.0.1.3

                DAV svn
                SVNParentPath /var/lib/svn
                AuthType Basic
                AuthName "Subversion Repository"
                AuthBasicProvider file
                AuthUserFile /etc/apache2/dav_svn.passwd
                Require valid-user
        </Location>
</VirtualHost>



On Wednesday, 26 November 2008 12:19:42 UTC, [email protected] wrote:
>
> Hi all. 
>
> I was trying to browse via repo-browser, and I got error message 
> when I wrote the URL: https://vm03.timetoknow.local:8443/svn 
> I got the error: "server sent unexpected return value (405 method not 
> allowed) in response to PROPFIND request for svn." 
>
> So I tried to checkout files from the repository 
> I wrote the command: 
> svn co https://vm03.timetoknow.local:8443/svn/dev/LMS/branch/v2.3/2.3 
>
> And I got the following error: 
> svn: Server sent unexpected return value (403 Forbidden) in response 
> to OPTIONS 
> request for 'https://vm03.timetoknow.local:8443/svn/dev/LMS/branch/ 
> v2.3/2.3' 
>
> I was working with SVN 1.4.5 without Apache, and then I moved the 
> folders to another server, installed the VisualSVN working with 
> Apache. I added the repository, so I can see it with the visualSVN, 
> and I can browse there but I can't work remotely. 
>
> Why am I getting those errors ? 
>

-- 
You received this message because you are subscribed to the Google Groups 
"VisualSVN" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/visualsvn/-/sswY-kF5DtoJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/visualsvn?hl=en.

Reply via email to