Closed
Bug 266413
Opened 20 years ago
Closed 17 years ago
"Automatic Proxy Configuration URL" string is imported from IE, but radio button is still on "Direct Connection"
Categories
(Firefox :: Migration, defect)
Tracking
()
RESOLVED
FIXED
Firefox 3 alpha8
People
(Reporter: betz2010, Assigned: bevan.collins)
References
Details
Attachments
(1 file)
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1 The string is imported from IE and is set correctly in the "Automatic Proxy Configuration" Field, but the radio button is not set, hence the first what a new user from our company will see is an error because the radio button is still on "Direct connection". One has to go to the options and select that radio button to connect to the internet. Reproducible: Always Steps to Reproduce: 1. Install FireFox 2. Import Wizard --> Import settings from IE (in the lan settings "use automatic configuration script" checked and an address is filled in) 3. Start FireFox Actual Results: Can not connect to the internet Expected Results: It should have selected the corresponding radio button, it has already imported the address string, but not selected it.
Comment 1•20 years ago
|
||
I have the same behavior with Firefox 0.8, 0.9, 1.0 and 1.0.1. And from IE 5.5 and IE 6.0, with differents proxy configurations. It's bad because the first time a new end user try Firefox after using IE, it doesn't work because of this bug. I think the property not setted is : network.proxy.type In http://lxr.mozilla.org/seamonkey/source/browser/components/migration/src/nsIEProfileMigrator.cpp , I have found : 1840 if (::RegQueryValueEx(key, "ProxyEnable", 0, &type, (LPBYTE)&enabled, &length) == ERROR_SUCCESS) { 1841 if (enabled & 0x1) 1842 aPrefs->SetIntPref("network.proxy.type", 1); 1843 else 1844 aPrefs->SetIntPref("network.proxy.type", 0); 1845 } Perhaps there should be a test for type 2 (with automatic proxy from url). Etienne Juliot
Updated•20 years ago
|
Assignee: firefox → bugs
Component: Preferences → Migration
QA Contact: mconnor → migration
Comment 2•19 years ago
|
||
This is an automated message, with ID "auto-resolve01". This bug has had no comments for a long time. Statistically, we have found that bug reports that have not been confirmed by a second user after three months are highly unlikely to be the source of a fix to the code. While your input is very important to us, our resources are limited and so we are asking for your help in focussing our efforts. If you can still reproduce this problem in the latest version of the product (see below for how to obtain a copy) or, for feature requests, if it's not present in the latest version and you still believe we should implement it, please visit the URL of this bug (given at the top of this mail) and add a comment to that effect, giving more reproduction information if you have it. If it is not a problem any longer, you need take no action. If this bug is not changed in any way in the next two weeks, it will be automatically resolved. Thank you for your help in this matter. The latest beta releases can be obtained from: Firefox: http://www.mozilla.org/projects/firefox/ Thunderbird: http://www.mozilla.org/products/thunderbird/releases/1.5beta1.html Seamonkey: http://www.mozilla.org/projects/seamonkey/
| Assignee | ||
Comment 3•19 years ago
|
||
Still a problem with Firefox 1.5 beta 2
| Assignee | ||
Comment 4•19 years ago
|
||
Attachment #199051 -
Flags: review?
| Assignee | ||
Updated•19 years ago
|
Attachment #199051 -
Flags: review? → review?(vladimir)
Updated•19 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
(In reply to comment #4) > Created an attachment (id=199051) [edit] > patch to leave network.proxy.type = 2 rather than setting back to 0 for auto > config url Review remains stopping. Should change reviewer?
| Assignee | ||
Updated•19 years ago
|
Attachment #199051 -
Flags: review?(vladimir) → review?(mlconnor)
Comment 6•19 years ago
|
||
Comment on attachment 199051 [details] [diff] [review] patch to leave network.proxy.type = 2 rather than setting back to 0 for auto config url you meant to ask review from mconnor apparently.
Attachment #199051 -
Flags: review?(mlconnor) → review?(mconnor)
Comment 7•19 years ago
|
||
*** Bug 297288 has been marked as a duplicate of this bug. ***
Comment 8•18 years ago
|
||
Still experiencing this bug in Firefox 1.5.0.3
Updated•18 years ago
|
Assignee: bugs → nobody
Comment 9•18 years ago
|
||
Comment on attachment 199051 [details] [diff] [review] patch to leave network.proxy.type = 2 rather than setting back to 0 for auto config url this looks right, but tossing review over to Gavin to test on a Windows build.
Attachment #199051 -
Flags: review?(mconnor) → review?(gavin.sharp)
Comment 10•17 years ago
|
||
Comment on attachment 199051 [details] [diff] [review] patch to leave network.proxy.type = 2 rather than setting back to 0 for auto config url Works fine for me, tested with IE7, direct/manual/PAC.
Attachment #199051 -
Flags: review?(gavin.sharp) → review+
Comment 11•17 years ago
|
||
Thanks for the patch Bevan, and sorry for the delay in getting this reviewed and landed :(
Assignee: nobody → bevan.collins
Keywords: checkin-needed
Target Milestone: --- → Firefox 3 M7
Version: unspecified → Trunk
Comment 12•17 years ago
|
||
browser/components/migration/src/nsIEProfileMigrator.cpp 1.64
Status: NEW → RESOLVED
Closed: 17 years ago
Keywords: checkin-needed
Resolution: --- → FIXED
Target Milestone: Firefox 3 M7 → Firefox 3 M8
Comment 13•17 years ago
|
||
Please pardon my ignorance but how/weher is this patch code (in the attachement) applied to Mozilla Firefox installation? Thanks
Comment 14•17 years ago
|
||
The patch is currently in development versions of Firefox, which will eventually be released as Firefox 3. You can get one at ftp://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk, although you shouldn't expect it to work as well as a release build.
You need to log in
before you can comment on or make changes to this bug.
Description
•