WilHatfield
Admin
 Admin
| Posts: 17 |  | Karma: 0
|
Re: Internet Explorer Security Messages During Checkout - 2005/11/14 01:19
Mike,
With SSL security it is either all encrypted or nothing. This means that all of your image SRC= values have to be using a relative path to the file so that when you switch between non-secure and secure pages the URL switches with it.
Bad Usage: http://www.yourdomain.com/image.gif
Good Usage: /image.gif
This goes the same for references to stylesheets, favicons, embeds, javascript and any other element that will be loaded with the page.
In your case you are using a full url to your javascript.
src="http://www.yourdomain.com/javamenu.js"
Change this to: src="/javamenu.js" and the page will load without error.
Wil
|