Thats weird... I guess a lot of this can be effected by the settings in firefox or even your PC settings in general (firewall settings, etc) but it SHOULD be giving you a unknown host error if you don't have a service running on localhost port 80. Check the error message in the attachment, thats what happens when I shut apache down on my localhost, it should be the same thing with apache not installed. Long story short, if nothing is running on port 80 then nothing should happen, and that 'should' cause an error. Your not getting the results that you want, but with it hanging like that something is happening to keep firefox from failing. any type of connection at all, even if it hangs rather then giving you a page, is something when there should be nothing. Sorry, I can see where that might sound confusing :queasy:
try typing "telnet localhost 80" in a windows com box. It should absolutly come back saying:
Connecting To localhost...Could not open connection to the host, on port 80: Connect failed
If not you have something running on HTTP's port.
There are programs that will open on port 80 for various reasons, including many types of trojans. Start with trying to telnet it, and with that out of the way we can work from there.
I can deduce your problem this far (somebody correct me if im wrong please):
1) First, if nothing is running on port 80 then it shouldn't be stalling
2) If it was a firewall issue then the connection would be refused, which should have the same result as #1, it should be failing rather then stalling
3) If the page simply wasn't there you would get a 404 error. Thats a mute point if you have already uninstalled apache, but at the same time we shouldn't see it as an option.
4) apache should have been responding in some way when it was installed, even if that response was en error message rather then the page you were hoping for. with it behaving the same way without apache as it did when apache was running, I'm questioning if the request ever made it to apache. You should have been getting a page with apache, or at least a 404 or 500 error, and now you should be getting a 'Server not found' error in apache.
I think that your problem lies in number 4, but the fact that it wasn't failing is suspicious, and is even more so now that nothing should be on port 80 with apache is uninstalled.
Jason