In my case Firefox v8 was always trying to detect and return an IPv6 address even whilst IPv6 was disabled or not configured. It was returning ::1 when IPv6 was disabled. So these behaviour causes problem during interpreting a WPAD file created by IPv4 addresses.
To test it and be ensure your problem is same as above; create a simple WPAD.dat file with the command lines below.
Press Shift + Ctrl + J to open Error Console when you get the error again.
Write IPv6 to filter area, it will list network.dns.disableIPv6 and highly possibly you've got false for the value.
Change value to True by double clicking, this change will force Firefox to get IPv4 addresses from the client and will fix WPAD interpreting issue.
You can also use the batch file below if you'd like to do this change by a batch file.
cd
/D "%APPDATA%\Mozilla\Firefox\Profiles"
cd *.default
set ffxpath=%cd%
echo user_pref("network.dns.disableIPv6", true);>>"%ffxpath%\prefs.js"
set ffxpath=
cd *.default
set ffxpath=%cd%
echo user_pref("network.dns.disableIPv6", true);>>"%ffxpath%\prefs.js"
set ffxpath=
1 comment:
You are awesome! Thank you so much for this, you saved me!!
Post a Comment