Link to home
Start Free TrialLog in
Avatar of 1Cougar
1Cougar

asked on

IE not loading a site

Hello,

I have developed a website that has a ".net" suffix.  A person with IE11 was unable to even load the page while on all other browsers and on Mac it seems to be fine.  Someone has suggested the person change DNS however, I don't think you can expect users to have to do a several step manipulation to enable their browser to load the site.

Does anyone have any ideas of what could be done to ensure the page will load in IE11?  

Thanks in advance.

Cheers,
Avatar of amaru96
amaru96

Hi, I don't see how changing DNS will help. Does the site resolve when you try to ping it? If so, then DNS is not the problem.

I have noticed some strange things with IE11 and certain pages. Not sure if it will help, but a couple of things to try;

Add the site the "compatibility list" - Under TOOLS, Compatibility View Settings, Add the site
Could also try adding the site to the trusted sites list - TOOLS, Internet Options, Security tab
Avatar of 1Cougar

ASKER

Hi and thanks.  Unfortunately, if you are trying to have a potential client check out your site and they have to go through hoops to even load it, I don't think it looks good. I found this on another site.  Does it make sense to you?

Try add

<meta http-equiv="X-UA-Compatible" content="IE=10" />
into the header. It fixed IE11 for my website. It just forces it into IE10 mode (A complete joke though)
Avatar of 1Cougar

ASKER

This is the only info I have that they saw when trying to load the site.  They did not click "diagnostics" and I know they do not have the patience to try to help me debug this...so I am kind of trying to guess what the issue could be since it is the first time I have seen this.

Again, I have read that the .net could be an issue, though I don't understand why....

Any other thoughts anyone?

Thanks,
Avatar of 1Cougar

ASKER

with file :)
IMG-0006.JPG
Is the site accessible to anyone? Can I try it from my end? The mouse covers some of the address but it looks like www.mediaboard.net?

Is it running on IIS? Do you have SSL enabled and bound to the site?
Avatar of 1Cougar

ASKER

Hello,

The site is not a IIS, website is working on apache and SSL is also not enabled

Yes, the site is mediaboard.net

Thanks for your help.
Avatar of Dave Baldwin
You should "Request Attention" above and get the Wordpress Topic Area added to your question to get some people who are more likely to be able to help you.
Avatar of 1Cougar

ASKER

Thanks -- have done that!

Cheers,
ASKER CERTIFIED SOLUTION
Avatar of amaru96
amaru96

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of 1Cougar

ASKER

I think that is the problem!!  Thank you!!

Do you know what I can do to make sure the url resolves to http and not https?

Cheers,
The URL doesn't "resolve" to http or https, that is included in the URL.

The URL to your site is http://www.mediaboard.net/ or just www.mediaboard.net. Both will direct you to the normal HTTP connection.

If someone uses https://www.mediaboard.net/ then the page will fail to load.

I'm not sure if there's a way to have apache redirect any attempt trying to reach the page on https to http, but I would imagine it to be more trouble than it's worth. Especially if you later decided to attach a certificate to the site you would have to remove that redirect. Besides, most sites are concerned about redirecting http to https, not the other way around.

Also, as an example:
http://www.news.com - works
https://www.news.com - fails
Avatar of 1Cougar

ASKER

Thank you.  But, the user typed www.mediaboard.net and it showed up as https://www.mediaboard.net in their browser.  Why does that happen?  She did not type "https" it did it automatically in the browser.  Is this something with IE?  And, if I do attach certificate do you know what happens when they user types http -- does it fail?  

Finally, do you recommend https over http as a general rule of thumb?  Our site will not be selling online.

Many thanks,
If the user has already tried hitting your site using the HTTPS URL, then IE will remember and try going there again - even if it failed.
Clear the browsing history (TOOLS, Internet Options, General Tab, Delete - and tick to clear browsing history) and try again.

If you attach a certificate to your site (and bind and enable SSL) then users can get to your site via either HTTP or HTTPS. SSL certificates are not free though (unless you try using open source) and expire after a set number of years.

Do I recommend https over http.....depends. Unless you are transmitting sensitive information, I wouldn't bother.

If you like, you can read a little about SSL here: http://support.exware.com/ssl.html
Avatar of 1Cougar

ASKER

Thank you for your help!!

Cheers,