Results 1 to 10 of 10
  1. #1
    Join Date
    May 2008
    Posts
    77
    Plugin Contributions
    0

    Default Process for troubleshooting SSL unauthenticated content issues?

    I was hoping someone could point me to a page or thread in the forums to help me troublshoot my 'broken' padlock when I visit the https version of my store. I could swear I have seen it, but since I can't search for "ssl" I can't figure out where to look.

  2. #2
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: Process for troubleshooting SSL unauthenticated content issues?

    most common causes are hard coded images

    You can double click on the padlock and then hit the media tab,
    see what image is causing the issue
    google code thats using the wrong url is a close second

    if you cna post a link here im sire someone can help you locate it
    Zen cart PCI compliant Hosting

  3. #3
    Join Date
    May 2008
    Posts
    77
    Plugin Contributions
    0

    Default Re: Process for troubleshooting SSL unauthenticated content issues?

    Thanks for the response. I think I'm alright on the images, so maybe it's that I've not got google analytics setup correctly?

    I mosey over to the google analytics site to see if I can figure out what's up.

    Store is at http://appalshop.org/store/

  4. #4
    Join Date
    May 2008
    Posts
    77
    Plugin Contributions
    0

    Default Re: Process for troubleshooting SSL unauthenticated content issues?

    Hmm.. so according to the analytics documentation, if I'm using the current version of the tracking code (I am) I shouldn't have to do anything else in order to use analytics with the store.

  5. #5
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,250
    Plugin Contributions
    58

    Default Re: Process for troubleshooting SSL unauthenticated content issues?

    Open IE and load the page after saying NO to no secure items... Its the images in the top CSS menu. Even images in CSS must be either relative or to secured images to work properly.

    Additionally, you are launching IFrames from that menu as well... Don't think that will fly either.

    ~Melanie
    PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are not conducive to a helpful community.

  6. #6
    Join Date
    May 2008
    Posts
    77
    Plugin Contributions
    0

    Default Re: Process for troubleshooting SSL unauthenticated content issues?

    I don't have access to internet explorer at home (Linux only) but I'm a little confused about your comments. As far as I know, there aren't any images or iframes in the menu at all. Are you definitely at appalshop.org/store?

  7. #7
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,250
    Plugin Contributions
    58

    Default Re: Process for troubleshooting SSL unauthenticated content issues?

    I hate IE ... lol but if you tell it not to display the non secured items your menu is then verticals with not images nor styles...

    store/includes/templates/appalstyle/css/stylesheet.css
    Code:
    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td (line 4)
    
    {
    
    margin-top: 0pt;
    
    margin-right: 0pt;
    
    margin-bottom: 0pt;
    
    margin-left: 0pt;
    
    padding-top: 0pt;
    
    padding-right: 0pt;
    
    padding-bottom: 0pt;
    
    padding-left: 0pt;
    
    border-top-width: 0pt;
    
    border-right-width-value: 0pt;
    
    border-right-width-ltr-source: physical;
    
    border-right-width-rtl-source: physical;
    
    border-bottom-width: 0pt;
    
    border-left-width-value: 0pt;
    
    border-left-width-ltr-source: physical;
    
    border-left-width-rtl-source: physical;
    
    border-top-style: none;
    
    border-right-style-value: none;
    
    border-right-style-ltr-source: physical;
    
    border-right-style-rtl-source: physical;
    
    border-bottom-style: none;
    
    border-left-style-value: none;
    
    border-left-style-ltr-source: physical;
    
    border-left-style-rtl-source: physical;
    
    border-top-color: -moz-use-text-color;
    
    border-right-color-value: -moz-use-text-color;
    
    border-right-color-ltr-source: physical;
    
    border-right-color-rtl-source: physical;
    
    border-bottom-color: -moz-use-text-color;
    
    border-left-color-value: -moz-use-text-color;
    
    border-left-color-ltr-source: physical;
    
    border-left-color-rtl-source: physical;
    
    outline-color: -moz-use-text-color;
    
    outline-style: none;
    
    outline-width: 0pt;
    
    font-weight: inherit;
    
    font-style: inherit;
    
    font-size: 100%;
    
    font-family: inherit;
    
    }
    common/menu.css
    Code:
    .menuStripe (line 100)
    
    {
    
    background-color: #ddffdd;
    
    }
    
    div.menubar (line 26)
    
    {
    
    margin-top: 0pt;
    
    margin-right: auto;
    
    margin-bottom: 0pt;
    
    margin-left: auto;
    
    text-align: center;
    
    }
    Just a handy trick I guess

    ~Melanie
    PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are not conducive to a helpful community.

  8. #8
    Join Date
    May 2008
    Posts
    77
    Plugin Contributions
    0

    Default Re: Process for troubleshooting SSL unauthenticated content issues?

    Ah, I see the iframe reference (just copied in from our CSS reset). I think the unsecured items are those CSS files themselves!

  9. #9
    Join Date
    May 2008
    Posts
    77
    Plugin Contributions
    0

    Default Re: Process for troubleshooting SSL unauthenticated content issues?

    That was it - the stylesheet was referred to by an http absolute link. Thanks for the help!

  10. #10
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,250
    Plugin Contributions
    58

    Default Re: Process for troubleshooting SSL unauthenticated content issues?

    Cool... Glad you got it, hate those SSL issues.

    ~Melanie
    PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are not conducive to a helpful community.

 

 

Similar Threads

  1. Blank side box & SSL Unauthenticated content
    By Green333 in forum Basic Configuration
    Replies: 7
    Last Post: 12 Aug 2010, 01:54 AM
  2. SSL Trouble...Unauthenticated content
    By v0903856 in forum Basic Configuration
    Replies: 7
    Last Post: 13 Sep 2009, 09:31 PM
  3. SSL Issue: warning: "contains unauthenticated content" in FF
    By edmore in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 22 Aug 2009, 10:40 AM
  4. warning: contains unauthenticated content
    By coolglobal in forum PayPal Express Checkout support
    Replies: 8
    Last Post: 1 Sep 2008, 09:35 AM
  5. Ssl Problem - get "warning: contains unauthenticated content"
    By StrictlyAutoParts in forum Basic Configuration
    Replies: 14
    Last Post: 4 Feb 2008, 06:13 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg