Vidalia Control Panel is showing the status as green and connected to the Tor network. Everything in the message log looks fine, but the browser is saying that Firefox is configured to use a proxy server that is refusing connections. I have looked online for a solution and I cannot find one. I have tried using the proxy settings that came with it and using proxy settings for my version of Firefox. I have also tried using only ports 80/443. I have disabled Norton 360. I cannot figure out how to get past this screen. Please let me know what additional information you need.
Trac: Username: Cruzax
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items
0
Link issues together to show that they're related.
Learn more.
I'm having the same problem. Everything worked right after installation, but after re-boot no go. I tried all proxy configurations for Tor, including a relay bridge (Verzion FIOS) and still no go. Also disabled my security (Kaspersky), added Tor to trusted app list, etc. and still this configuration problem. Using Firefox ver 23.x (latest version). Thnx for any/all help.
Trac: Username: askalthea Component: Tor Check to Tor
= Recommended solution: = #recommended-solution
TL;DR: Install Tor Browser Bundle (TBB) in a fresh directory, do not install over a previous installed TBB.
Note: IF you have made any changes to bookmarks and NoScript, THEN you will have to export your bookmarks and NoScript settings.
How-to export bookmarks
Click on "Bookmarks" -> "Show All Bookmarks Ctrl+Shift+B".
Click on "Import and Backup" -> "Export Bookmarks to HTML".
Choose a directory and a filename and press "Save".
How-to import bookmarks
Click on "Bookmarks" -> "Show All Bookmarks Ctrl+Shift+B".
Click on "Import and Backup" -> "Import Bookmarks from HTML".
Choose the directory where you saved your "bookmark.html" file, select it and press "Open".
How-to export NoScript settings
Right-click on the NoScript icon (a big "S") -> Options
Click on the button labelled "Export" in the bottom row of buttons .
Choose a directory and a filename and press "Save".
Example filename: "noscript-export.json".
How-to import NoScript settings
Right-click on the NoScript icon (a big "S") -> Options
Click on the button labelled "Import" in the bottom row of buttons .
Choose the directory where you saved your "noscript-export.json" file, select it and press "Open".
How-to export/import other settings
If you have changed other settings, you probably already know what to do.
If you forgot which settings you changed, make a list of all changes the next time (now?) you start with a fresh TBB install.
But remember: any changes you do to the default settings will make you stand out more from the crowd of Tor users in the eyes of a global adversary Big Brother (NSA).
= Alternate solution: = #alternate-solution
IF you installed the new Tor Browser Bundle (TBB) in the same directory as the previous TBB AND you get the "The proxy server is refusing connections" error THEN do this:
In the Vidalia Control Panel: click "Stop Tor".
Wait until the status shows: "Tor is not running".
Open the torrc file in an editor you are familiar with, (notepad.exe if you prefer.)
Search the file until you find a line that starts with: SocksPort.
If it (most likely) says SocksPort 9050 then you have to change it to SocksPort 9150.
If it already says SocksPort 9150 then value is correct.
Also check the value for ControlPort, it should say ControlPort 9151 - if not: change it.
If you made any changes, then save the torrc file.
Close the editor.
In the Vidalia Control Panel: click "Start Tor".
IF this fails, repeat this procedure AGAIN.
IF you have repeated the procedure AND it fails THEN report it to this page because you might have found a different bug.
Remember
If you switch torrc files, you have to repeat this procedure twice.
You might just as well exit TBB including Vidalia completely, then edit vidalia.conf to point to the other torrc file, then "Start Tor Browser.exe" again.
Thnx for solution and really appreciate your help.
I downloaded newest ver. and re-installed Tor after upgrading Firefox. Tor is working properly for now. I did notice, however, that the changes I made to network settings in Vidalia's control panel were not correctly recorded in the torrc config file. So, I'll wait to see if Tor works on re-boott.
Thnx for solution and really appreciate your help.
It's nice to be able to help someone.
You said that you made changes to the network settings in Vidalia's control panel: If I assume you meant that you clicked "Settings" -> "Network" and made some changes there - then these changes should be saved in vidalia.conf and not in the torrc file.
I have found the root cause of the bug "The proxy server is refusing connections".
I am changing component to Vidalia because this is where the bug originates from, but this affects all (?) releases of Tor Browser Bundle (prior to TBB 3.0).
Could someone cc: this ticket to erinn ?
I am also changing the priority to Blocker, to gain attention to this issue fast. The owner of this issue (ciiph) can lower the priority after reading.
The value 9050 is WRONG. The correct value changed to 9150 in less than a month after the last time this file was edited.
Hard coding values inside code is ALWAYS WRONG.
If a default value is needed it should be #define'd at the top of the file, and preferably ALL "magic numbers" should be #define'd in one file for the whole application.
A quick fix to the first (and the second bug mentioned below) would be to add these lines at the appropriate place (line 55?):
but I am a bit suspicious of this whole code fragment as I fail to see the need to check if autocontrol is true when line 97 seems to always set autocontrol to false.
Code review please?
Also worth noting: C++ isn't Python. Curly braces should always be used to avoid future errors when someone else edits the code.
Example, if someone else (or yourself 2 months later) adds statement c(); as such:
if (a) b(); c(); // Newly added statement c();
it is interpreted by the compiler as:
if (a) { b(); } c();
so statement c(); is always run, instead of the intended:
if (a) { b(); c(); }
Or a better example is in the same file (TorSettings.cpp) on lines 126 to 130:
if (hashedPassword.isEmpty()) { if (errmsg) *errmsg = tr("Failed to hash the control password."); return false; }
What is supposed to happen? It is not clear from just glancing at the code. One needs to look at the context and search up and down to find out if the code behaves as someone intended. Hours of fun could follow...
_Bug 2_
In line 85 (also in TorSettings.cpp) this code is found:
setDefault(SETTING_CONTROL_PORT, 9051);
Here, again, a hard-coded "magic number" is hidden. Any inline value other than zero (0) and one (1) should have a name of its own and be defined Once and Only Once [2],[3],[4]. The correct value (in TBB) for ControlPort is at present 9151. This value changed at the same time as SocksPort changed.
Trac: Keywords: N/Adeleted, Vidalia, ControlPort, SocksPort, TorBrowserBundle, Tor Launcher added Owner: N/Ato chiiph Component: Tor to Vidalia Priority: normal to blocker
After reading what the FAQ said on this subject, I found that a design decision was made to allow a Tor Browser to be running alongside a system Vidalia+Tor instance.
Under these circumstances a user would have two Vidalia instances running in parallel, requiring the use of separate ControlPorts and SocksPorts for each instance.
The amended solution would define what to build in the makefile, or use environment variables in the build script, and look something like this:
I have been using tor for some months and never had any problem connecting tor.but last week tor said that browser needs updating and it stopped working.I updated tor and everything was fine.There was a mild delay in connection but was fine.This week I could not connect even once,it starts but in the middle the green line stops moving.I appreciate any help.Thanks.