Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2005
    Posts
    6
    Plugin Contributions
    0

    Default Shared SSL configuration not working

    I have a problem that I haven't been able to find the answer for in this forum. I would really appreciate any ideas on where to go next!

    I am trying to configure shared SSL for checkout. So far, I have modified the admin/includes/configure.php and includes/configure.php files. I have also enabled SSL. The https path was given to me by the host. Here is the pertinent part of the includes/configure.php file.
    --------------------------------------------------------
    / 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://holistictree.com');
    define('HTTPS_SERVER', 'https://secure.stormer.us/~holistic/store/');

    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', 'true');
    ------------------------------------------------------
    ...and here is part of the admin/includes/configure.php file.

    define('HTTP_SERVER', 'http://holistictree.com');
    define('HTTPS_SERVER', 'https://secure.stormer.us/~holistic/store/');
    define('HTTP_CATALOG_SERVER', 'http://holistictree.com');
    define('HTTPS_CATALOG_SERVER', 'https://secure.stormer.us/~holistic/store/');

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

    When I make these changes, I can use the https link to go directly to my store, but I lose all formatting on the page. Then, whenever I click any link on the page, I go back to an unseceure page. I get no other errors and everything seems to work OK, except I cannot get a secure connection on either login or checkout.

    Thanks!

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,677
    Plugin Contributions
    6

    Default Re: Shared SSL configuration not working

    You have incorrect settings ...
    define('HTTP_SERVER', 'http://holistictree.com');
    define('HTTPS_SERVER', 'https://secure.stormer.us/~holistic/store/');
    Should be:
    define('HTTP_SERVER', 'http://holistictree.com');
    define('HTTPS_SERVER', 'https://secure.stormer.us/~holistic');
    These settings:
    define('HTTP_SERVER', 'http://holistictree.com');
    define('HTTPS_SERVER', 'https://secure.stormer.us/~holistic/store/');
    define('HTTP_CATALOG_SERVER', 'http://holistictree.com');
    define('HTTPS_CATALOG_SERVER', 'https://secure.stormer.us/~holistic/store/');
    Should be:
    define('HTTP_SERVER', 'http://holistictree.com');
    define('HTTPS_SERVER', 'https://secure.stormer.us/~holistic');
    define('HTTP_CATALOG_SERVER', 'http://holistictree.com');
    define('HTTPS_CATALOG_SERVER', 'https://secure.stormer.us/~holistic');
    I am not sure what the rest of your settings are ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

  3. #3
    Join Date
    Feb 2005
    Posts
    6
    Plugin Contributions
    0

    Default Re: Shared SSL configuration not working

    Duh!
    Thank you so much! Something so simple....

    Works great now.

 

 

Similar Threads

  1. Admin SSL not working??
    By styledata in forum Basic Configuration
    Replies: 16
    Last Post: 27 Jan 2007, 11:00 PM

Bookmarks

Posting Permissions

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