
Originally Posted by
davidwfanning
The non-SSL items problem turned out to be due to a problem with a single image file in a store template I had purchased for my store. I discovered this problem in the store/includes/templates/CUSTOMTEMPLATE/common/tpl_footer.php file. I changed the link from http:// to
https:// and all was well.
Just a suggestion, but if you have a need to re-edit this link, or any others like it, you are far better of to use relative rather than absolute URL's.
For example, instead of
Code:
<A HREF="http://yourdomain.com/folder/image.jpg">
or
<A HREF="https://yourdomain.com/folder/image.jpg">
Change it to
<A HREF="/folder/image.jpg">
This has three significant benefits:
1) It will work correctly for both secure and non-secure pages.
2) It will alleviate the need for the client's browser to perform another DNS lookup. With only one image, this is no big deal, but if there are dozens of images this can have a measurable effect.)
3) If you ever need to migrate your site to use a different domain name (For example, if you decide to place it somewhere like 'store.youdomain.com') the image(s) will correctly load from the new location.
The only time absolute URL's should be used if if/when the images (or whatever) are being stored on *another* domain entirely.
Cheers
Rod