If you do not need the proxy, the try the following and see if it helps:
Disable Proxy Settings
Tools>Internet Options> Connections tab> LAN Settings button
Under Proxy server, make sure the box there is unchecked
Disable Automatic Proxy configuration
http://charterpipelinentx.net/disableproxy.htm
Hope this helps
Jan :)
Smiles are meant to be shared,
that's why they're so contagious.
Replies are posted only to the newsgroup for the benefit or other readers.
How to make a good newsgroup post:
http://www.dts-l.org/goodpost.htm
>I use XP+SP1. I am in the UK and I am connected to NTL broadband.
>
> I am almost certain that I used to have no proxy sevrer set in IE6 >
> Tools > Internet Options > Connections > Lan Settings.
>
> However I now see that the Use Proxy Server box is ticked and the IP
> address entered is the loopback address 127.0.0.1 on port 81.
>
> Some web sites do not like this and they have problems.
>
> I also have Zome Alarm 4.5 and also the antivirus Avast (version 4.5
> home edition). Perhaps one of these two applications change the LAN
> Settings?
>
> I also use Firefox and Opera as browsers. Their own settings seem
> unchanged and do not refer to a proxy server but when I try to go to
> the problem web pages (eg http://www.firstdirect.com/) then they
> return a message protesting about proxy servers.
>
> How can I get around this?
>
In that case what would happen is that ZA is taking over reading the site
and filtering it's content, leaving IE to look at the ZA proxy for the
filtered output.
I hasten to add that I don't know this for sure but it's possible.
There could also be spyware or malware doing this, however try the obvious
first and look for popup blockers, possible antivirus with similar and then
check task manager to see what's running in case that helps.
Charlie
"Zak" <z...@nomail.invalid> wrote in message
news:95FC120DB...@205.188.138.161...
What have you installed recently?
>I hasten to add that I don't know this for sure but it's possible.
Some email antivirus scanners do it.
--
Cheers,
Guy
** Stress - the condition brought about by having to
** resist the temptation to beat the living daylights
** out of someone who richly deserves it.
> I use XP+SP1. I am in the UK and I am connected to NTL broadband.
>
> I am almost certain that I used to have no proxy sevrer set in IE6 >
> Tools > Internet Options > Connections > Lan Settings.
>
> However I now see that the Use Proxy Server box is ticked and the IP
> address entered is the loopback address 127.0.0.1 on port 81.
Unfortunately last time I looked windows does not allow you to see what is
listening on a port (does XPSP2? the most secure ever?)
Download this
http://www.sysinternals.com/ntw2k/source/tcpview.shtml
and see what is listening on TCP port 81.
If it is something like rundll.exe or the other easily hijacked system
process you will need to do futher investigation.
> Some web sites do not like this and they have problems.
Well it is best to have only proxying of HHTP and not everything, I am
sure you can do that on windows.
> I also have Zome Alarm 4.5 and also the antivirus Avast (version 4.5
> home edition). Perhaps one of these two applications change the LAN
> Settings?
>
> I also use Firefox and Opera as browsers. Their own settings seem
> unchanged and do not refer to a proxy server but when I try to go to the
> problem web pages (eg http://www.firstdirect.com/) then they return a
> message protesting about proxy servers.
I run a transparent proxy and never have problems with firstdirect.
BTW: Avoid using your home banking until you get to the bottom of this.
> On Sat, 12 Feb 2005 20:09:24 -0600, "Charlie Tame" <cha...@tames.net>
> wrote:
>
>>I hasten to add that I don't know this for sure but it's possible.
>
> Some email antivirus scanners do it.
For HTTP?
>
>Unfortunately last time I looked windows does not allow you to see what is
>listening on a port (does XPSP2? the most secure ever?)
Command prompt -> netstat -b
Tells you which app has opened which port.
Command prompt -> netstat -a
Tells you which ports are listening.
Command prompt -> netstat /? gives you the whole rundown of options.
Jake
>On Sun, 13 Feb 2005 12:31:38 +0000, steve <st...@nospam.invalid>
>wrote:
>
>
>>
>>Unfortunately last time I looked windows does not allow you to see what is
>>listening on a port (does XPSP2? the most secure ever?)
>
>Command prompt -> netstat -b
>
>Tells you which app has opened which port.
I think you'll find that's netstat -o
>Command prompt -> netstat -a
>
>Tells you which ports are listening.
This can be combined with -o, so
Command prompt -> netstat -a -o
lists all open ports, and gives the process identity number (PID) of the
owner of each port.
Then, to find the name, window title and username of the process, use
-> tasklist /V /FI "PID eq NNNN"
where NNNN is the PID number you got from netstat.
--
Dave Johnson - req...@freeuk.com
Yes I guess they would have to for web based email, but I was not thinking
of that :)
"steve" <st...@nospam.invalid> wrote in message
news:pan.2005.02.13....@nospam.invalid...
> On Sun, 13 Feb 2005 01:46:29 +0000, Zak wrote:
>
>> I use XP+SP1. I am in the UK and I am connected to NTL broadband.
>>
>> I am almost certain that I used to have no proxy sevrer set in IE6 >
>> Tools > Internet Options > Connections > Lan Settings.
>>
>> However I now see that the Use Proxy Server box is ticked and the IP
>> address entered is the loopback address 127.0.0.1 on port 81.
>
> Unfortunately last time I looked windows does not allow you to see what is
> listening on a port (does XPSP2? the most secure ever?)
Look again. <eg>
netstat -ao | find /i "listening"
Then use tasklist /v /fi "PID eq ..." (or Task Manager's Processes tab)
---