Results 1 to 9 of 9
  1. #1
    Join Date
    Aug 2008
    Posts
    7
    Plugin Contributions
    0

    Default ssl problem please please some one be up

    i really hope some one is up and can help me with this. I have searched in the fourm and have not found a solotion to my problem. i just got the ssl cert and i have veryfied that the ssl points to https://www.chucksnuts.com and not https://chuchksnuts.com..

    the problem is with the images they do not come up with the https. i have checked each of the images links by looking at the source and the php code and the refure to the images via path and not the absolute path such as www.chucksnuts.com/images/images name.

    so then i thought it was my template. i chaged the template to the default and i get the same result. here is my configure.php file settings

    Code:
    // Define the webserver and path parameters
      // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
      define('HTTP_SERVER', 'http://www.chucksnuts.com');
      define('HTTPS_SERVER', 'https://www.chucksnuts.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/');

  2. #2
    Join Date
    Aug 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: ssl problem please please some one be up

    no Google Analytics

    and i also searched for

    src="http://

    and came up with nothing.

  3. #3
    Join Date
    Mar 2007
    Location
    AZ
    Posts
    1,911
    Plugin Contributions
    2

    Default Re: ssl problem please please some one be up

    I looked at your site (via http not https) and the images are there.
    When I go to "login" your site switches to https (as it should) and images are there too.

    One thing I noticed while there is that your "Home" button takes me back to the landing page and not the store home page - kind of annoying to be sent back there and having to select the online shopping again to get back to the store home page ~ IMHO

    Tina

  4. #4
    Join Date
    Nov 2007
    Location
    Burney, CA. USA
    Posts
    131
    Plugin Contributions
    4

    Default Re: ssl problem please please some one be up

    The problem I see, is in your template.

    You have given a static address for the images in your template.

    Code:
    http://www.chucksnuts.com/includes/templates/Chucksnuts/buttons/english/menu/m6.jpg
    all of your template images seem to be pointed to "http:" instead of
    Code:
    ../includes/templates/Chucksnuts/buttons/english/menu/m6.jpg
    as it should be.

    Hope this helps point you in the right direction, so that you can get launched without any further issues (seeing how you are about to get serious advertising from the Food Network).

  5. #5
    Join Date
    Aug 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: ssl problem please please some one be up

    did you get the security information popup this pages contains both secure and nonesecure items? when trying to login

  6. #6
    Join Date
    Aug 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: ssl problem please please some one be up

    Quote Originally Posted by DWells View Post
    The problem I see, is in your template.

    You have given a static address for the images in your template.

    Code:
    http://www.chucksnuts.com/includes/templates/Chucksnuts/buttons/english/menu/m6.jpg
    all of your template images seem to be pointed to "http:" instead of
    Code:
    ../includes/templates/Chucksnuts/buttons/english/menu/m6.jpg
    as it should be.

    Hope this helps point you in the right direction, so that you can get launched without any further issues (seeing how you are about to get serious advertising from the Food Network).

    Here is the code in the template for that section that you are talking about
    Code:
        <div class="dc"><div><a href=""><?=zen_image(DIR_WS_TEMPLATE.'buttons/'.$_SESSION['language'].'/menu/m1.jpg')?></a><a href="<?=zen_href_link(FILENAME_SPECIALS)?>"><?=zen_image(DIR_WS_TEMPLATE.'buttons/'.$_SESSION['language'].'/menu/m2.jpg')?></a><a href="<?=zen_href_link(FILENAME_PRODUCTS_NEW)?>"><?=zen_image(DIR_WS_TEMPLATE.'buttons/'.$_SESSION['language'].'/menu/m3.jpg')?></a><a href="index.php?main_page=products_all"><?=zen_image(DIR_WS_TEMPLATE.'buttons/'.$_SESSION['language'].'/menu/m4.jpg')?></a><a href="<?=zen_href_link(FILENAME_REVIEWS)?>"><?=zen_image(DIR_WS_TEMPLATE.'buttons/'.$_SESSION['language'].'/menu/m5.jpg')?></a><a href="<?=zen_href_link(FILENAME_CONTACT_US)?>"><?=zen_image(DIR_WS_TEMPLATE.'buttons/'.$_SESSION['language'].'/menu/m6.jpg')?></a><?php if ($_SESSION['customer_id']) { ?><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?=zen_image(DIR_WS_TEMPLATE.'buttons/'.$_SESSION['language'].'/menu/m7_off.jpg')?></a>
    <?php
    As you can see it does not refrence the http or https so in theory it should allow for both. it should allow me to pull up https.

    one thing that i noticed is that it does this with the default template that zen cart starts out with. so i am thinking that it is not the template...... any ideas

    would you like me to change it to the zen cart template...

  7. #7
    Join Date
    Aug 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: ssl problem please please some one be up

    Quote Originally Posted by charmedbytina2 View Post
    I
    When I go to "login" your site switches to https (as it should) and images are there too.
    Tina

    but the images not being brought up as https. and that is why i am reciving the secured and not secured message. hummmm.....

    this is very strange for me even the oringal zen cart template is doing the same thing. that is what i am running now while every buddy is looking. thanks for your help

  8. #8
    Join Date
    Aug 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: ssl problem please please some one be up

    i can't hang and i have to get up early i look forward to every ones responses tomarrow morning

  9. #9
    Join Date
    Aug 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: ssl problem please please some one be up

    so i am going to change the code on configure.php from
    Code:
    // Define the webserver and path parameters
      // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
      define('HTTP_SERVER', 'http://www.chucksnuts.com');
      define('HTTPS_SERVER', 'https://www.chucksnuts.com');
    to

    Code:
    // Define the webserver and path parameters
      // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
      define('HTTP_SERVER', 'https://www.chucksnuts.com');
      define('HTTPS_SERVER', 'https://www.chucksnuts.com');
    now when i do this it makes the site slow but it secures the whole site and i no longer get the message that i have a secure and unsecure items. so this proves that there are not hard-coded actual url links. And that all my links are relative paths.

    i really would like to make this work the way it is supposed to work but for the mean time this will work....

    the webhosting company i am with is networksolutions any ideas.

    could it be some kind of setting withe the webhosting company?

 

 

Similar Threads

  1. v150 Can some one please check this out - Facebook plugin not loading
    By valsurfer101 in forum General Questions
    Replies: 3
    Last Post: 12 Dec 2012, 07:35 PM
  2. some help please, salemaker issue and ssl images
    By odysseus in forum Setting Up Specials and SaleMaker
    Replies: 3
    Last Post: 21 Oct 2009, 02:01 PM
  3. ssl to make active only for one page...please help
    By rakhi in forum General Questions
    Replies: 4
    Last Post: 6 Jul 2007, 05:24 PM
  4. Categories Fatal Error in Admin area Can some one please help
    By touchclothing in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 12 Jan 2007, 06:01 AM
  5. Some One Please Help Me!!!!!!
    By rtkillen in forum Templates, Stylesheets, Page Layout
    Replies: 17
    Last Post: 26 Nov 2006, 10:05 PM

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