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
    69,402
    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!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  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. v154 Login not working getting 404. Shared SSL problem
    By QuickBooksDev in forum Basic Configuration
    Replies: 2
    Last Post: 2 Jan 2016, 09:15 PM
  2. Working with a shared SSL
    By Varisha in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 19 Oct 2008, 01:27 PM
  3. Shared SSL configuration Problem
    By shmegma in forum General Questions
    Replies: 15
    Last Post: 10 Aug 2006, 06:53 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