Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I'm not sure if you've changed anything on your staging in the last 3 hours, but the problems I'm observing are related to this problem</p> <p><a href="https://stackoverflow.com/questions/6541721/ie-doesnt-support-relative-paths-in-the-base-element-when-referencing-css-files">IE doesn&#39;t support relative paths in the base element when referencing CSS files</a></p> <p>When your page requests <a href="http://stage.change4cancer.org/profile/647955793" rel="nofollow noreferrer">http://stage.change4cancer.org/profile/647955793</a>, it gets actual html for the page. Now whether or not it's supposed to redirect to #profile/647955793 is another matter (why you'd want to do that after you've already loaded the content, I'm not sure), but let me explain. </p> <p>In that html from <a href="http://stage.change4cancer.org/profile/647955793" rel="nofollow noreferrer">http://stage.change4cancer.org/profile/647955793</a> you have the following tag:</p> <pre><code>&lt;base href="/" /&gt; </code></pre> <p>But IE9 will not respect that tag unless it has a full URI. Therefore, all the paths to the JS, CSS, etc are wrong. Instead of </p> <p><a href="http://stage.change4cancer.org/js/libs/backbone-0.9.2.min.js" rel="nofollow noreferrer">http://stage.change4cancer.org/js/libs/backbone-0.9.2.min.js</a></p> <p>it's requesting</p> <p><a href="http://stage.change4cancer.org/profile/js/libs/backbone-0.9.2.min.js" rel="nofollow noreferrer">http://stage.change4cancer.org/profile/js/libs/backbone-0.9.2.min.js</a></p> <p>Which actually returns yet another html page of some sort </p> <p>Since none of of your external JS is loading, of course things are going to go wrong.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload