Announcement

Collapse
No announcement yet.

Non secure items in SSL

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

    Non secure items in SSL

    As most of you know, the lack of the 'padlock' is quite off putting to alot of people. Currently our website isn't showing the padlock as its coming up with the 'your page has both secure and non secure items'. This ive been told is down to some images and links being http:// and not being https://. Is there a way in actinic to have a look for these bad links?

    Even if i just check the location of my main shop image (the image at the top of the screen) it shows it coming from http:// rather than https:// - is this right ?

    #2
    Post the URL and let's see the problem. Often people link to cc images etc that are on another non-SSL server. If they are on your own site then use relative URLs otherwise they must be hosted on other secure servers.

    Comment


      #3
      Thats for the quick replies

      What it turned out to be was the google adwords javascript. Are you aware of any way I can keep this script in without killing the SSL?

      Comment


        #4
        Google usually have https sourced scripts available - check on their site.

        Comment


          #5
          Code:
          <script src="https://ssl.google-analytics.com/urchin.js" ype="text/javascript">
          </script>
          <script type="text/javascript">
          _uacct = "YOUR SITE ID NUMBER HERE"; urchinTracker();
          </script>
          Just insert your google site id between the " " which will be something like UA-2*****9-1

          Comment

          Working...
          X