SSL not working on shoppingcart and checkoutpage

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 years ago
Iam using nopcommerce 3.9. I dont know why all page is secure with ssl except shopping cart and checkout page. This is image for issue
https://ibb.co/jGkNZkz
https://ibb.co/PWSy3sc
https://ibb.co/sWSBsrr
and my website: teeaccessories.com
What did I do wrong?
3 years ago
the only time I saw it go insecure was when certain images were loaded by ajax, so check for images hosted externally or loaded with a hardcoded insecure http://

hit F12 and use the Console to find them, E.G.



Also, checkout https://www.ssllabs.com/index.html , you have TLS 1.0 / 1.1 enabled on your server.  It is not the cause of this issue, but it is a security concern you will want to address, especially when dealing with PayPal payments.
3 years ago
af1racing wrote:
the only time I saw it go insecure was when certain images were loaded by ajax, so check for images hosted externally or loaded with a hardcoded insecure http://

hit F12 and use the Console to find them, E.G.



Also, checkout https://www.ssllabs.com/index.html , you have TLS 1.0 / 1.1 enabled on your server.  It is not the cause of this issue, but it is a security concern you will want to address, especially when dealing with PayPal payments.

Hi af1racing, thank u for review my problem. Can u suggest me how to solve relapce all image link from http to https
3 years ago
It is the script below trying to open a window containing the insecure image of the item you just added.  The window does not open and my guess is you have a plugin for that functionality, so make sure it is properly configured.



You also have some Facebook tracking that is broken (ReferenceError: fbq is not defined) so whatever you have generating this may be preventing the javascript above from working too:


    //Facebook Event
    fbq('track', 'ViewContent', {
        value: 21.9900,
        currency: 'USD',
        content_ids: '57584',
        content_type: 'Product',
    });
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.