Announcement

Collapse
No announcement yet.

Checkout suddenly not secure

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Checkout suddenly not secure

    So sorry if it just me who cannot see the wood for the trees, but suddenly Firefox is displaying an amber triangle saying checkout is not secure. Rest of the site displays green padlock as always. I haven't changed anything so it's rather strange. Have checked and double checked and I can't see anything amiss. If anyone ccan see why it is like this now I would be very grateful. Fine in Internet Explorer, Safari and Google Chrome.

    Thank you
    Kind Regards
    Karen

    Charmed Cards & Crafts

    #2
    Mixed Content. i.e. stuff that isn't https:

    <link href="actinic.css" rel="stylesheet" type="text/css"><link rel="shortcut icon" href="http://www.charmedcardsandcrafts.co.uk/acatalog//favicon.ico" type="image/x-icon" />

    Chrome has the same but doesn't seem to mind.
    -----------------------------------------

    First Tackle - Fly Fishing and Game Angling

    -----------------------------------------

    Comment


      #3
      Saw that but disregarded that as that hasn't changed and it was green padlock last time I looked. In fact it is so old that I have no recollection of ever adding it!
      Why would that show there? I have definitely never hardcoded that.
      Kind Regards
      Karen

      Charmed Cards & Crafts

      Comment


        #4
        Web browsers are continuously updated and FireFox brought in this warning around version 52. It's V63 now.

        You should be able to locate the offending code by going to Design / Library / Layouts. Right-click the top entry and choose find. Enter favicon.ico and that should take you to the code. Delete:
        Code:
        <link rel="shortcut icon" href="http://www.charmedcardsandcrafts.co.uk/acatalog//favicon.ico" type="image/x-icon" />
        Or change the http to https if you actually have a favicon.ico in your Site folder.
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          I searched there Norman but it couldn't be found. The only thing is this:
          <link rel="shortcut icon" href="<actinic:variable name="CatalogURL" />/favicon.ico" type="image/x-icon" />
          So Sellerdeck is adding the link as http, rather than https. I noticed it also does that for section images, although Firefox is fine with that. It's odd as I have never changed anything relating to that and noticed it doesn't appear in checkout coding for other Sellerdeck sites.

          Thanks both for helping.
          Kind Regards
          Karen

          Charmed Cards & Crafts

          Comment


            #6
            Look in your Site folder for a file called favicon.ico. If you find that file is present, then change:
            Code:
            <link rel="shortcut icon" href="<actinic:variable name="CatalogURL" />/favicon.ico" type="image/x-icon" />
            To:
            Code:
            <link rel="shortcut icon" href="<actinic:variable name="SSLCatalogURL" />/favicon.ico" type="image/x-icon" />
            If you don't have a file favicon.ico in your Site folder (which I think is the case) then delete the entire line:
            Code:
            <link rel="shortcut icon" href="<actinic:variable name="CatalogURL" />/favicon.ico" type="image/x-icon" />
            Note that favicon.ico may be referenced in many Layouts in the Library, so you may need to repeat the above until you've fixed them all.
            Norman - www.drillpine.biz
            Edinburgh, U K / Bitez, Turkey

            Comment


              #7
              Hi Karen, the insecure favicon is a bug that was fixed in v16.0.0. You should be able to fix it in your site code by replacing
              <actinic:variable name="CatalogURL" />
              with
              <actinic:variable name="SSLCatalogURL" />
              Bruce Townsend
              Ecommerce Product Manager
              Sellerdeck Ecommerce Solutions

              Comment


                #8
                Thanks guys, you're the best!
                Kind Regards
                Karen

                Charmed Cards & Crafts

                Comment

                Working...
                X