Results 1 to 8 of 8
  1. #1
    Join Date
    Mar 2009
    Posts
    13
    Plugin Contributions
    0

    Default http:// not routing to https://

    I think I may be doing something wrong. I have installed Godaddy SSL and made the changes in admin/includes/config/ and includes/config. to note the Https:server. But my the address isn't defaulting in the address bar to https://www.lawsonhomefurnishings.com and the"gold lock" isn't there. If you type in the address that way the site does load. I have contacted Godaddy says that they can see that it was installed and maybe Zencart has a script to that routes in from http: to https:???

    I hope this makes sense, thanks

  2. #2
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: http:// not routing to https://

    I do see your SSL lock ..However, either your Configure.php is not correct or SSL is not installed correctly ..

    you can past content of your configure.php in includes folder here to see.
    PLEASE remove Database information before submitting .

  3. #3
    Join Date
    Mar 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: http:// not routing to https://

    includes/configure.php
    <?php
    /**
    * @package Configuration Settings circa 1.3.8
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    */


    /*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

    // 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.lawsonhomefurnishings.com');
    define('HTTPS_SERVER', 'https://www.lawsonhomefurnishings.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', 'https://www.lawsonhomefurnings.com/');

    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/');

    admin/includes/configure.php
    <?php
    /**
    * @package Configuration Settings circa 1.3.8
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    */


    /*************** NOTE: This file is similar, but DIFFERENT from the "store" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

    // Define the webserver and path parameters
    // Main webserver: eg-http://www.your_domain.com -
    // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    // HTTP_CATALOG_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_CATALOG_SERVER is your Secure webserver: eg-https://www.your_domain.com
    /*
    * URLs for your site will be built via:
    * HTTP_SERVER plus DIR_WS_ADMIN or
    * HTTPS_SERVER plus DIR_WS_HTTPS_ADMIN or
    * HTTP_SERVER plus DIR_WS_CATALOG or
    * HTTPS_SERVER plus DIR_WS_HTTPS_CATALOG
    * ...depending on your system configuration settings
    *
    * If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
    */
    define('HTTP_SERVER', 'http://www.lawsonhomefurnishings.com');
    define('HTTPS_SERVER', 'https://www.lawsonhomefurnishings.com');
    define('HTTP_CATALOG_SERVER', 'http://www.lawsonhomefurnishings.com');
    define('HTTPS_CATALOG_SERVER', 'https://www.lawsonhomefurnishings.com');

    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'true');
    define('ENABLE_SSL_ADMIN', 'false');

    // 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_ADMIN', '/admin/');
    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_ADMIN', '/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/');

  4. #4
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: http:// not routing to https://

    includes / configure.php


    define('DIR_WS_HTTPS_CATALOG', 'https://www.lawsonhomefurnings.com/');

    replace with

    define('DIR_WS_HTTPS_CATALOG', '/');

  5. #5
    Join Date
    Mar 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: http:// not routing to https://

    Thanks,
    I changed that while I was waiting on replay. It changes to https:// when logging in account and in the shopping cart.

    Thanks

  6. #6
    Join Date
    Mar 2009
    Posts
    51
    Plugin Contributions
    0

    Default Re: http:// not routing to https://

    hi i have a similiar problem. when a user goes to my login page, the secure warning is shown.
    after clicking yes, the lock is no longer there. but if you click on login page again (from the no lock shown login page).. the lock shows !

    any ideas??

  7. #7
    Join Date
    Jul 2006
    Location
    Montreal, Canada
    Posts
    2,279
    Plugin Contributions
    0

    Default Re: http:// not routing to https://

    Quote Originally Posted by vaige View Post
    hi i have a similiar problem. when a user goes to my login page, the secure warning is shown.
    after clicking yes, the lock is no longer there. but if you click on login page again (from the no lock shown login page).. the lock shows !

    any ideas??
    in your footer , you have Site Meter logo that is HTTP and not HTTPS . that might be the cause of your security issue with both firefox and IE ..

  8. #8
    Join Date
    Mar 2009
    Posts
    51
    Plugin Contributions
    0

    Default Re: http:// not routing to https://

    That solved the problem!! Thank you!!

 

 

Similar Threads

  1. v151 Site not working on http only on https??
    By imfsub12 in forum General Questions
    Replies: 4
    Last Post: 9 Jan 2013, 03:29 PM
  2. checkout button url is http not https
    By roystik in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 19 Aug 2009, 05:31 AM
  3. http vs https images/buttons not loading secure
    By teager in forum Installing on a Linux/Unix Server
    Replies: 2
    Last Post: 10 Sep 2008, 09:42 PM
  4. banner images show in https but not http
    By makenoiz in forum General Questions
    Replies: 10
    Last Post: 26 May 2008, 04:48 AM
  5. links go to http instead of https (page not found)
    By maclean in forum Installing on a Linux/Unix Server
    Replies: 14
    Last Post: 23 Oct 2006, 03:55 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