vote up 0 vote down star

I'm trying to setup a new computer to synchronize with my SVN repository that's hosted with cvsdude.com.

I get this error:

SVN Error

Here's what I did (these have worked in the past):

  1. Downloaded and installed TortoiseSVN

  2. Created a new folder C:\aspwebsite

  3. Right-clicked, chose SVN Checkout...

  4. Entered the following information, clicked OK:

    • URL of repository: https://<reponame>-svn.cvsdude.com/aspwebsite
    • Checkout directory: C:\aspwebsite
    • Checkout depth: Fully recursive
    • Omit externals: Unchecked
    • Revision: HEAD revision
  5. Got TortoiseSVN error:

    • OPTIONS of 'https://<reponame>-svn.cvsdude.com/aspwebsite': could not connect to server (https://<reponame>-svn.cvsdude.com)

Rather than getting the error, TortoiseSVN should have asked for my username and password and then downloaded about 90MB.

Why can't I checkout from my Subversion repository?


Kent Fredric wrote:

Either their security certificate has expired, or their hosting is broken/down.

Contact CVSDude and ask them whats up.

It could also be a timeout, because for me their site is exhaustively slow..

It errors after only a couple seconds. I don't think it's a timeout.

Matt wrote:

Try visiting https://[redacted]-svn.cvsdude.com/aspwebsite and see what happens. If you can visit it in your browser, you ought to be able to get the files in your SVN client and we can work from there. If it fails, then there's your answer.

I can access the site in a web browser.

flag

65% accept rate
Where you refer to <reponame> you probably mean <account name>. At least, this is the way CVSDude structures their URL's. – Luke Sep 28 at 22:07

15 Answers

vote up 1 vote down

Either their security certificate has expired, or their hosting is broken/down.

Contact CVSDude and ask them whats up.

It could also be a timeout, because for me their site is exhaustively slow..

link|flag
It errors after only a couple seconds. I don't think it's a timeout. – Zack Peterson Sep 21 '08 at 19:08
vote up 4 vote down

Check you proxy settings in TortoiseSVN->Settings->Network.

Maybe they are configured differently than in your web browser.

link|flag
Note also that some proxys (such as the one in my office) don't support SVN use through them without some sort of manual configuration. More information is available on their website, iirc. – Greg D Mar 13 at 15:29
vote up 1 vote down

It is the problem with your proxy setting in TortoiseSVN. Connect using a network which doesn't use proxy or configure your proxy settings properly.

link|flag
vote up 1 vote down

I've have the same problem like this, but using my own server. Maybe APACHE is allowing only limited connection to the same server. I'm increasing the max_connection and KeepAlive setting. So far so good.

link|flag
vote up 1 vote down

I just had a similar issue, but it didn't error immediately, so it may have not been the same issue.

I'm behind a firewall and changed my proxy settings (TortoiseSVN->Settings->Network) to access an open source repo yesterday. I received the error this morning trying to checkout a repo in the local domain behind the firewall. I just had to remove the proxy settting in TortoiseSVN->Settings->Network to get it work locally again.

link|flag
vote up 1 vote down

I had a similar issue; turns out it was case-sensitivity issue. So, make sure you use the proper case.

link|flag
vote up 1 vote down

Many thanks Aaron Hible. I added proxy settings as per your instructions and all is now well!

link|flag
vote up 1 vote down

turn off your virus scanner and see if you are able to get to the repo

link|flag
vote up 1 vote down

Try pasting in the SVN URL into your browser's Address bar. You'll likely see that you cannot connect because of some issue with the URL. I had this issue just today and the problem was that I had mistyped the port number, but as others have noted it could also be a case-sensitivity issue, proxy settings, or other connection-level issues.

link|flag
vote up 1 vote down

Late reaction, but I've struggled with this for a while so maybe I can save somebody some time by showing my solution.

My problem showed a bit different, but the cause might be the same.

In my situation, TortoiseSVN kept on trying to connect via a proxy server. I could access SVN via chrome, firefox and IE fine.

Turns out that there is a configuration file that has a different configuration than the GUI in TortoiseSVN shows.

Mine was located here: C:\Documents and Settings\[username]\Application Data\Subversion\, but you can also open the file via the TortoiseSVN gui.

TortoiseSVN

In my file, http-proxy-exceptions was empty. After I specified it, everything worked fine.

[global]
http-proxy-exceptions = 10.1.1.11
http-proxy-host = 197.132.0.223
http-proxy-port = 8080
http-proxy-username = defaultusername
http-proxy-password = defaultpassword
http-compression = no
link|flag
vote up 1 vote down

I did not have network settings changed in any way and thus most of the stuff presented here did not apply to me. After messing around a lot the comment about the virus scanner got me on the right track: There are some virus scanners like McAfee, that protect certain areas of the system directories and make them read-only. When you connect to a server for the first time, Tortoise SVN tries to write the certificate on one of these files which fails due to the protection. Switch off the protection briefly, start the check out and after the certificate dialog, you can switch it back on. This at least worked for me.

link|flag
vote up 1 vote down

I got the same problem , follow your advices and now it works.I go to TortoiseSVN->Settings->Network set proxy server ,username and password. Then it works.Too much thanks.

link|flag
vote up 1 vote down

I too had same problem. I turned virus scanner off and it worked. Thanks to markusB for the tip.

link|flag
vote up 1 vote down

I got the same error today and discovered that the firewall was blocking the svn client

link|flag
vote up 1 vote down

I realize this is an old question, but the same issue happened to me, but for a completely different reason.

It could be that cvs-dude changed certificates, so it no longer matches the certificate you have cached.

You can go to TortoiseSVN->Settings->Saved Data and click the 'Clear' button next to 'Authentication data' and then try again.

link|flag

Your Answer

Get an OpenID
or

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