Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

localhost doesn't open in IE9

Tags:

I'm having this annoying problem that when I try to open localhost:8080 in IE9, it goes on to search the Internet for it as a keyword. It's working fine in other browsers, like Firefox and Chrome. I've also tried http://localhost:8082/ but that too doesn't work. What is going on?

like image 223
CobaltBabyBear Avatar asked May 26 '12 06:05

CobaltBabyBear


People also ask

How do I open localhost in IE?

Amazing, this works for me too (in a situation where all other browsers can access localhost/whatever, but IE cannot, on a work network). Just go to the menu / Safety / InPrivate Browsing. Localhost works.

Why is Internet Explorer not opening?

If you can't open Internet Explorer, if it freezes, or if it opens briefly and then closes, the problem might be caused by low memory or damaged system files. Try this: Open Internet Explorer and select Tools > Internet options. Select the Advanced tab, and then select Reset.


2 Answers

Apparently this problem can be caused by conflicts with IIS, if you have IIS installed. There are other issues that can cause IE9 127.0.0.1 resolutions to fail as well.

The common steps offered by Microsoft to resolve this issue, or any issues where IE is unable to resolve a website, involve resetting the IE9 browser settings:

  • Open Tools -> Internet Options
  • Click on the "Advanced" tab.
  • Click "Reset"
  • Click the checkbox for "Delete personal settings"
  • In the Reset Internet Explorer Settings dialog box, click "Reset".
  • When changes are done, click "Close" and then restart the browser.

If after following these steps, the problem still hasn't disappeared, repeat the above steps, except instead of clicking "Reset" in the "Advanced" tab, click "Restore Advanced Settings", which is located below "Reset".

This tech guide describes the steps for resetting the advanced settings on Windows 7 for IE9.

NOTE: Resetting will reset IE to factory settings. You'll lose your existing configuration and any settings or data in IE. Judging by your love for this browser, I'm assuming there isn't any data in there that you care about. ;) However, be sure you're okay with this before following these steps

like image 158
jmort253 Avatar answered Dec 06 '22 10:12

jmort253


Try using the loopback IP instead of localhost:

http://127.0.0.1:8082/ 

IE might be struggling to resolve localhost.

like image 35
Oleksi Avatar answered Dec 06 '22 12:12

Oleksi