Badges? We ain't got no badges. We don't need no badges. I don't have to show you any stinking badges!
June 26, 2006 9:49 PM
Subscribe
How do I get my browser to ignore a certain site?
Occasionally when I go to my yahoo mail, I'm prompted repeatedly, by popup, for a password for one of the sites serving ads.
It's happening again, at
this page, returning each of these two popups six times:
I've added adserver.adtech.de to my HOSTS file and restarted the computer,
according to these instructions (i.e. I added a line saying
127.0.0.1 adserver.adtech.de and saved the file again, with no extension). I thought that would solve the problem but it hasn't; revisiting that page after reboot shows that the site is still pestering me for a password.
I want my browser to ignore any and all requests from that site--to dump it in the bit bucket and continue loading the page without its input. I thought that was what HOSTS was for; but if it is, then why isn't it working?
posted by Tuwa to computers & internet (15 comments total)
There is no (easy) way to stop the browser requests completely. What this does is redirect them to the computer the browser is running on (which always has the address 127.0.0.1 or localhost), which in theory is meant to make them fail, since your own computer won't normally respond to HTTP requests.
What's happening instead is that software running at 127.0.0.1 (ie on your own computer) is responding to the requests and telling the browser you don't have permission. You need to figure out which software of yours is doing this.
(Did this happen before you started monkeying with the HOSTS file?)
posted by cillit bang at 10:00 PM on June 26, 2006