Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Mar 2005
    Location
    Waxahachie, Texas
    Posts
    174
    Plugin Contributions
    0

    Default Trying to convert from shared SSL to dedicated SSL

    My host (1&1/Ionis) dropped support for their shared SSL certificate and both Zen Cart stores' admin section is unavailable. They sent me a "gibberish" email (at least, to me) about adding it. I'm on 1.5.1, and can't upgrade because not everything I need is supported in later versions.

    Would someone please tell me how/what files to modify (and where) to fix it?
    Thanks,
    Ray

  2. #2
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,472
    Plugin Contributions
    88

    Default Re: Trying to convert from shared SSL to dedicated SSL

    That'll be in both the /includes/configure.php and /admin/includes/configure.php files, changing the HTTPS_SERVER and possibly DIR_WS_HTTPS_CATALOG settings.

  3. #3
    Join Date
    Mar 2005
    Location
    Waxahachie, Texas
    Posts
    174
    Plugin Contributions
    0

    Default Re: Trying to convert from shared SSL to dedicated SSL

    Thank you. I'm looking at it, trying to figure it out. I also have to figure out how to add the SSL.
    Thanks,
    Ray

  4. #4
    Join Date
    Mar 2005
    Location
    Waxahachie, Texas
    Posts
    174
    Plugin Contributions
    0

    Default Re: Trying to convert from shared SSL to dedicated SSL

    Getting a message: "This page can’t be displayed

    Turn on TLS 1.0, TLS 1.1, and TLS 1.2 in Advanced settings and try connecting to https://rdswebs.net again. If this error persists, it is possible that this site uses an unsupported protocol or cipher suite such as RC4 (link for the details), which is not considered secure. Please contact your site administrator. "

    I've checked and those are turned on. Any ideas?


    UPDATE: On another browser, I received a message that it couldn't be found. Could it possibly be the SSL isn't active yet?
    Last edited by rayw1679; 22 Oct 2019 at 10:46 PM.
    Thanks,
    Ray

  5. #5
    Join Date
    Jul 2012
    Posts
    16,732
    Plugin Contributions
    17

    Default Re: Trying to convert from shared SSL to dedicated SSL

    Don't know how rdswebs relates to your server/domain, but when I try it I connect, though it appears that ZC is not installed in the root as index.html appears to be the index for that directory and it has generic content.

    When setting up new SSL or transitioning to it, suggestion is to not force your customers to an https location until it has been worked out. Either that or put the store in maintenance mode with the same consideration.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #6
    Join Date
    Mar 2005
    Location
    Waxahachie, Texas
    Posts
    174
    Plugin Contributions
    0

    Default Re: Trying to convert from shared SSL to dedicated SSL

    Thank you. RDSWEBS.NET is our server. It has many websites and 2 Zencart stores in it.

    We've had it for at least 10 years, but they're making us change it (they no longer allow their "generic" SSL (see first post), and until we do, the admin side won't work.
    Thanks,
    Ray

  7. #7
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Trying to convert from shared SSL to dedicated SSL

    Have you purchased a replacement SSL certificate for the shared, free SSL certificate that was dropped?
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  8. #8
    Join Date
    Mar 2005
    Location
    Waxahachie, Texas
    Posts
    174
    Plugin Contributions
    0

    Default Re: Trying to convert from shared SSL to dedicated SSL

    Yes, thank you for asking. I did it a few hours ago, so it may not yet be effective.
    Last edited by rayw1679; 23 Oct 2019 at 12:15 AM.
    Thanks,
    Ray

  9. #9
    Join Date
    Mar 2005
    Location
    Waxahachie, Texas
    Posts
    174
    Plugin Contributions
    0

    Default Re: Trying to convert from shared SSL to dedicated SSL

    I just received an order, but I can't sign in ... it just "ignores" the input. If someone could please look at this and tell me what I messed up, I'd appreciate it. (I have blanked out passwords and other sensitive info.)

    <?php
    /**
    * @package Configuration Settings circa 1.5.1
    * @copyright Copyright 2003-2012 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * File Built by zc_install on 2013-02-10 06:49:24
    */


    /*************** 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. ***********/

    /**
    * WE RECOMMEND THAT YOU USE SSL PROTECTION FOR YOUR ENTIRE ADMIN:
    * To do that, make sure you use a "https:" URL for BOTH the HTTP_SERVER and HTTPS_SERVER entries:
    */


    define('HTTP_SERVER', 'https://rdswebs.net');
    define('HTTPS_SERVER', 'https://rdswebs.net');
    define('HTTP_CATALOG_SERVER', 'https://rdswebs.net/reliablegokarts.com');
    define('HTTPS_CATALOG_SERVER', 'https://rdswebs.net/reliablegokarts.com');

    // secure webserver for admin? Valid choices are 'true' or 'false' (including quotes).
    define('ENABLE_SSL_ADMIN', 'true');

    // secure webserver for storefront? Valid choices are 'true' or 'false' (including quotes).
    define('ENABLE_SSL_CATALOG', '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)
    $t1 = parse_url(HTTP_SERVER);$p1 = $t1['path'];$t2 = parse_url(HTTPS_SERVER);$p2 = $t2['path'];

    define('DIR_WS_ADMIN', '/reliablegokarts.com/store/adminaw/');
    define('DIR_WS_CATALOG', '/store/');
    define('DIR_WS_HTTPS_ADMIN', '/reliablegokarts.com/store/adminaw/');
    define('DIR_WS_HTTPS_CATALOG', '/store/');




    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
    define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
    define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
    define('DIR_WS_INCLUDES', 'includes/');
    define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
    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_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    define('DIR_FS_ADMIN', realpath(dirname(__FILE__) . '/../') . '/');
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_CATALOG', '/homepages/5/d232125156/htdocs/reliablegokarts.com/store/');

    //the following path is a COMPLETE path to the /logs/ folder eg: /var/www/vhost/accountname/public_html/store/logs ... and no trailing slash
    define('DIR_FS_LOGS', '/homepages/5/d232125156/htdocs/reliablegokarts.com/store/logs');

    define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
    define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
    define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
    define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
    define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', '');
    define('DB_CHARSET', 'latin1');
    define('DB_SERVER', 'localhost:/tmp/mysql5.sock');
    define('DB_SERVER_USERNAME', 'dbo452608595');
    define('DB_SERVER_PASSWORD', 'xxx');
    define('DB_DATABASE', 'xxx');

    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'database');
    define('DIR_FS_SQL_CACHE', '/homepages/5/d232125156/htdocs/reliablegokarts.com/store/cache');


    // 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
    */
    // EOF
    Thanks,
    Ray

  10. #10
    Join Date
    Jul 2012
    Posts
    16,732
    Plugin Contributions
    17

    Default Re: Trying to convert from shared SSL to dedicated SSL

    May have to reset the password through a database access tool and the following FAQ. https://www.zen-cart.com/content.php?44
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 2
    Last Post: 15 Jun 2012, 12:18 AM
  2. Should I go for dedicated SSL or free shared SSL? What's the deal?
    By calvinrobinson in forum General Questions
    Replies: 3
    Last Post: 28 Oct 2010, 03:00 PM
  3. SSL using shared ssl for the server
    By shobuz99 in forum Basic Configuration
    Replies: 1
    Last Post: 24 Aug 2008, 08:12 PM
  4. convert non-ssl store to ssl
    By artcoder in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 8 Jul 2008, 04:15 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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR