I have ssl in my e-commerce web site. At first, browser always asking “do you want to show this web site’s content” in all page and when I redirect to mycart page browser shows the same alert like that “This webpage contains content that will not be delivered using a secure HTTPS connection, which could comprise the safety of the entire webpage….Yes…No….”. After I clicked to yes, all my sessions get null. Do you have any suggestions for me?
KR,
Çağın
The problem is your secure page is accessing information (scripts, images, etc.) from pages that are not secure. For example if you reference a javascript file (say jQuery) from a nonsecure site (say Google) then certain browsers (like IE) will display this message. You need to search through your references and find these. In other words searching
src="httpor something along those lines will pull up the nonsecure references.Depending on what you are referencing you can move those items to your site so that they are now “secure”. Also, in some cases changing your reference from
src="httptosrc="httpscan resolve the problem.Once you resolve this alert you can check again to see if you are having sessions issues as you could have some other issues to address.