First of all please excuse my lack of knowledge, I'm new to Tortoise, and my bad English.

My problem is that every time I do some operation with an URL like the following one: https://nttt.dttt.com:8443/svn/nttt/Med/trunk I get "Server sent unexpected return value (403 Forbidden) in response to OPTIONS". The user and password I supplied was correct, so no problem there.

I don't know where the problem lies, I don't know if it is the server(on witch I don't have any control) or my Tortoise client.

Thanks in advance for any answer or guidance.

link|improve this question
Thanks for all your answers. Superfilin and Dave Markle were right, it was a server configuration problem. – S Bogdan Mar 31 '10 at 6:19
feedback

6 Answers

up vote 4 down vote accepted

I don't think it is TroitoiseSVN. The problem most likely is that you don't have access to full tree or all HTTP operations. Try accessing these URLs in your browser:

https://nttt.dttt.com:8443/svn/nttt

https://nttt.dttt.com:8443/svn/nttt/Med

https://nttt.dttt.com:8443/svn/nttt/Med/trunk

And see if you get any 403 errors. Otherwise you will need to talk to your system administrator to fix the rights.

link|improve this answer
In the browser I get the same error, and I don't have a Proxy...So are you saying that that the problem is my internet connection, or some kind of firewall issue? – S Bogdan Mar 30 '10 at 12:28
It's most likely the configuration of your server. – Dave Markle Mar 30 '10 at 12:38
@S Bogdan, I agree to Dave, it's your server configuration. – Andrey Adamovich Mar 30 '10 at 14:11
2  
I just got the same error : I had simply forgotten to add my svn user to my svn "developpers" group (using VisualSVN Server) – cosmo0 Jan 18 '11 at 8:33
I have same problem like cosmo0, mistyping wrong group name. So please check access.conf file – nguyendat Feb 6 at 4:02
feedback

according to this post it is a known bug http://groups.google.com/group/visualsvn/browse_thread/thread/e16fe2e3c5fdab8d?pli=1 Setting username and password manually may help

link|improve this answer
I already looked at that discussion, but I don't know how to set the username and password manually – S Bogdan Mar 30 '10 at 12:31
something like this in command line: svn update --username asdf --password asdf, but i never tried it through command line – sanjuro Mar 30 '10 at 12:41
feedback

It's possible that you're using the wrong URL. It's also possible that your apache server is misconfigured.

What happens when you put that URL into your web browser? Can you see it? Try verifying the path first by testing your URL with the browser, then try Tortoise again.

link|improve this answer
The URL is fine, and when I try it in the browser I get the same error – S Bogdan Mar 30 '10 at 12:29
feedback

You just need to delete the saved data from your SVN. Go to this path All Programs --> TSVN --> settings -->Saved Data ---> Clear the Authentication Data. After doing this, you can access to your SVN path with the proper credentials.

link|improve this answer
feedback

Try accessing this url (https://nttt.dttt.com:8443/svn/nttt/Med/trunk) with your web browser, if you can get through its not Tortoisesvn issue.

link|improve this answer
feedback

i was also debugging this issue. I have a control over the server. So just found out that the group "everyone", if present, was configured to "No Access" (which I did it) and it was conflicting with my admin rights so just removed it completely to resolve this forbidden user error.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.