Getting whole site to display as https

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 лет назад
I am having issues with IE showing up a warning to customers that not everything in the shopping cart will be delivered via secured https. Apparently this is due to the images being stored in a folder that is out side of the shopping cart. How do I get the entire site to display at https instead of http?
14 лет назад
Hi

I remember reading about this recently.
It's because the secure page is trying to reference an item from a section of website it believes is in a non-secure area.
Solution... wherever you are using absolute paths to reference an item - change it to an relative path.

e.g.   http://top/images/imageulike.jpg ...becomes....   ~/images/imageulike.jpg    (or similar)   :)
14 лет назад
Thanks for that...I am a 'non'techy'! I know the basics, so I understand your comments, but how do I know which pages need changing? Would it be whatever the page is that is opening when this message appears?
14 лет назад
I had the same problem on IE

What I did was: lets say you're on the shopping cart page, I updated the ordersummary.ascx control to return images urls including the https instead of http. it's not the cleaner way to do this but it worked:

public string GetProductVariantImageUrl(ShoppingCartItem shoppingCartItem)
        {
           .
.
.
......
            }
            return pictureUrl.Replace("http:/","https:/");
         }
14 лет назад
Thanks! I will give that a try.
14 лет назад
This issue is already fixed and will be available in the next release
14 лет назад
Do you know how long before the next release is due?
14 лет назад
It'll published within one month
14 лет назад
Great! Thanks :-D
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.