Results 1 to 10 of 11

Hybrid View

  1. #1
    Join Date
    Feb 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: Secure and unsecure items problem

    That wasn't the problem - I removed the image and associated script and I still have the problem.

  2. #2
    Join Date
    Feb 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: Secure and unsecure items problem

    I was checking similar threads and followed the advice to double-click the broken padlock for more information. This is the list of media for the page:

    http://store.authenticnz.com/include.../tile_back.gif
    https://store.authenticnz.com/images/anz-logo.gif
    http://store.authenticnz.com/include...tton_login.gif
    http://store.authenticnz.com/include...ton_submit.gif

    As you can see, my background image and a couple of the buttons point to http:// instead of https://. These are zen-cart generated, so I am not sure how I can set them to load from https instead. That's the same problem I had with my logo, which as I said I hard-coded to load from https.

    Any help would be appreicated!

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

    Default Re: Secure and unsecure items problem


  4. #4
    Join Date
    Feb 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: Secure and unsecure items problem

    I didn't hard code it. I just used the classic template through zen cart. I don't know how to set it to point to the secure site (i.e. https://) rather than http://

    In the css code, it's set to ../images/tile_back.gif so it's a relative link.

    I don't want to hard code it because that appears on all the pages, secure and non-secure.

  5. #5
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Secure and unsecure items problem

    Think this is more basic than an image or two as when viewing your source for this page:

    your site login page source:
    Code:
    <base href="http://store.authenticnz.com/" />
    other sites:
    Code:
    <base href="https://www.XXXXXXX.com/" />
    Might begin with posting the first 15-20 lines from your includes/configure.php file

  6. #6
    Join Date
    Feb 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: Secure and unsecure items problem

    Here's my code from includes/configure.php

    Code:
    // Define the webserver and path parameters
      // HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
      // HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
      define('HTTP_SERVER', 'http://store.authenticnz.com');
      define('HTTPS_SERVER', 'https://store.authenticnz.com');
    
      // Use secure webserver for checkout procedure?
      define('ENABLE_SSL', 'true');
    
    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
    // * DIR_WS_* = Webserver directories (virtual/URL)
      // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
      define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    
      define('DIR_WS_IMAGES', 'images/');
      define('DIR_WS_INCLUDES', 'includes/');
      define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
      define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
      define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
      define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
      define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
      define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');

  7. #7
    Join Date
    Dec 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Secure and unsecure items problem

    I've just solved this problem on my site. The offending bit of code was in the stylesheet.css for my chosen template. I had hard-coded the URL of the header background gif. To solve it I made it a relative link (../images/header_bg.jpg) and uploaded a copy of the gif into the template's images folder.

    Your problem sounds more complex but this might help.

 

 

Similar Threads

  1. Replies: 1
    Last Post: 10 Jan 2010, 11:28 PM
  2. Secure/Unsecure in IEX7 and IEX8 but not Firefox?
    By jund in forum Basic Configuration
    Replies: 3
    Last Post: 7 Aug 2009, 02:39 PM
  3. Using HostGator and Shared SSL, Secure and Unsecure Items?
    By daxxruckus in forum Basic Configuration
    Replies: 14
    Last Post: 30 Dec 2008, 08:01 AM
  4. IE 6: This page contains both secure and unsecure...
    By kbalona in forum General Questions
    Replies: 12
    Last Post: 22 Oct 2008, 11:27 AM
  5. Secure and Unsecure issues
    By renewal777 in forum General Questions
    Replies: 17
    Last Post: 25 Aug 2008, 04: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