Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

We have a nifty little web app that we've whipped up. The client-side is almost entirely jQuery, which supports IE9 (as well as other versions). Preliminary browser testing has come back very positive, with one exception.

We have a Project Manager who is experiencing some crazy things on his instance of IE9. All of our testers, analysts and developers have tested the same pages as this PM with IE9 on their machines and the web app works/displays perfectly fine. It's just this one individuals machine where the following things are happening:

  • "Internet Explorer cannot display the webpage" errors on ~80% of pages/page loads
  • Image files (that we store on Akamai CDN) are not downloaded and show up as broken images (red X's)

I already had him check to see if the Use proxy server for your LAN was unchecked (and it is) - I've read that when this option is checked it can cause similar issues.

I have no aversion to rolling up my sleeves and debugging the web app with F12 Developer Tools while working at his machine, but this just doesn't feel like a "code issue" seeing that it works on everyone else's IE9 instance (typical developer - "Couldn't be my code!!!").

This is holding up our release because the PM ultimately has to sign off on the QA testing - and he's not about to do it when he can't even verify the app works for himself!

Are there configuration or properties files that IE9 uses that are defining things incorrectly in his instance?

What would a pro webmaster do? Thanks in advance!

share|improve this question
Flagging for move to SuperUser. That said, the PM not signing off because of a problem that is provably limited to his machine only is ridiculous. – Su' Jul 12 '12 at 16:27
1  
I appreciate the help @Su - are you sure SuperUser is the right site for this question? I'm kind of pressed for time here and I'd hate to get moved to SuperUser only to have them closevote it for being off-topic. – zharvey Jul 12 '12 at 16:39

closed as off topic by Su', John Conde Jul 15 '12 at 11:17

Questions on Webmasters Stack Exchange are expected to relate to webmastering within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

First thing check to see how it loads in a different browser. use chrome. If the issues exists then its a network / machine / host file / dns issue.

If the issues only exist with IE9 and not other browsers, you might want to dive into his IE settings. IE9 lets you browse as previous versions of IE in what they call compatibility mode. Sometimes, depending on how your site is coded this causes major issues. Also check the paths of the scripts that are not loading. Perhaps something as a base address.

One thing we always do is use full domain urls for js / css files. Its not as nice as having / paths, in regards to the amount of code, but it makes sure that you dont have nightmare issues when moving scripts around.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.