Announcement

Collapse
No announcement yet.

Odd Mixed Content Warning

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

    Odd Mixed Content Warning

    I'm trying to figure out why I can't get an https page to "lock". I think there may be multiple issues but the oddest is the one telling me it's trying to load a favicon from it's "parent" site. As in a recognize the domain name (and it the Miva portion of the site).

    https://www.azsil.com/library/library.php

    Yeah, I know it doesn't seem to want to load the script (unless allowed). Should I dig through it?

    Leslie Kirk
    Miva Certified Developer
    Miva Merchant Specialist since 1997
    Previously of Webs Your Way
    (aka Leslie Nord leslienord)

    Email me: [email protected]
    www.lesliekirk.com

    Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

    #2
    The /favicon.ico request is 301'd to an insecure url.
    David Hubbard
    CIO
    Miva
    [email protected]
    http://www.miva.com

    Comment


      #3
      Originally posted by ILoveHostasaurus View Post
      The /favicon.ico request is 301'd to an insecure url.
      Would this have been done via an htaccess file?
      Leslie Kirk
      Miva Certified Developer
      Miva Merchant Specialist since 1997
      Previously of Webs Your Way
      (aka Leslie Nord leslienord)

      Email me: [email protected]
      www.lesliekirk.com

      Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

      Comment


        #4
        Is there a better way to write this?

        Code:
        RewriteCond %{REQUEST_URI} !^/library [NC]
        RewriteCond %{HTTP_HOST} !^www.arizonasilhouette.com$ [NC]
        RewriteRule ^(.*)$ http://www.arizonasilhouette.com/? [L,R=301]
        FYI - The page doesn't have a favicon link in it.

        Leslie Kirk
        Miva Certified Developer
        Miva Merchant Specialist since 1997
        Previously of Webs Your Way
        (aka Leslie Nord leslienord)

        Email me: [email protected]
        www.lesliekirk.com

        Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

        Comment


          #5
          I have no way to know what the intent behind that rewrite is. It doesn't seem to make any sense for a rewrite to have conditions related to a random directory AND the domain name, then, even though SSL is present on that site, force the URL to insecure.
          David Hubbard
          CIO
          Miva
          [email protected]
          http://www.miva.com

          Comment

          Working...
          X