views:

35

answers:

1

I'm receiving this error, however there is NO flash on the page. I've used FireBug also to confirm, but only receive this error in IE (IE 8 that I've tested).

Is there something else that could cause this outside of flash?

A: 

Ok, the reason was due to having https instead of http in the DOCTYPE

Wrong:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "https://www.w3.org/TR/html4/strict.dtd"&gt;   

Correct:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt;   
dave