Results 1 to 2 of 2
  1. #1
    Join Date
    May 2006
    Location
    Louisiana
    Posts
    263
    Plugin Contributions
    0

    help question Login Page Not found with SSL

    website: www . bestvar ietyshop .com


    This is the message that's given when log in is clicked on.
    There is a problem with this website's security certificate.

    The security certificate presented by this website was not issued by a trusted certificate authority.
    The security certificate presented by this website was issued for a different website's address.

    Security certificate problems may indicate an attempt to fool you or intercept any data you send to the server.
    We recommend that you close this webpage and do not continue to this website.
    Click here to close this webpage.
    Continue to this website (not recommended).
    More information
    --------------------------------------------------------------------------------------------
    This data base was switch over from another website with a fresh zen cart download.

    This is my configure.php settings.
    define('HTTP_SERVER', 'http://www.bestvarietyshop.com');
    define('HTTPS_SERVER', 'https://www.bestvarietyshop.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/');

    define('DIR_WS_PHPBB', '/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_CATALOG', '/home/lakecoun/public_html/');

    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
    define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
    define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'zen_');
    define('DB_SERVER', 'localhost');
    define('DB_SERVER_USERNAME', 'removed');
    define('DB_SERVER_PASSWORD', 'removed');
    define('DB_DATABASE', 'lakecoun_zc2');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // use 'db' for best support, or '' for file-based storage

    admin configure.php

    define('HTTP_SERVER', 'http://www.bestvarietyshop.com');
    define('HTTPS_SERVER', 'https://www.bestvarietyshop.com');
    define('HTTP_CATALOG_SERVER', 'http://www.bestvarietyshop.com');
    define('HTTPS_CATALOG_SERVER', 'https://www.bestvarietyshop.com');

    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'false');
    define('ENABLE_SSL_ADMIN', '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_ADMIN', '/admin/');
    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_ADMIN', '/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/');

    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)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_ADMIN', '/home/lakecoun/public_html/admin/');
    define('DIR_FS_CATALOG', '/home/lakecoun/public_html/');

    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', 'zen_');
    define('DB_SERVER', 'localhost');
    define('DB_SERVER_USERNAME', 'removed');
    define('DB_SERVER_PASSWORD', 'removed');
    define('DB_DATABASE', ' ');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // use 'db' for best support, or '' for file-based storage

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Login Page Not found with SSL

    This data base was switch over from another website with a fresh zen cart download.
    First, SSL certs are not contained in the DB - But are issued to domain names normally...

    This appears to be a site move and the cert files from the old site might have been part of the files moved but this cert also looks to be a shared SSL and is issued to

    secure68.websitewelcome.com

    and not to bestvarietyshop.com so this site does not own it...

    The new site might also have a shared SSL and/or what is being used might be a shared SSL for the new site but this is not reflected in your configure.php files.

    Determine if this secure68.websitewelcome.com is from the old site or the new and then correct the htpps:// url accordlingly. (If from the old, you either need to get a shared cert or buy a private cert)
    Zen-Venom Get Bitten

 

 

Similar Threads

  1. Login 404 Not Found with SSL url
    By brusuelas in forum Installing on a Linux/Unix Server
    Replies: 1
    Last Post: 29 Dec 2009, 03:07 AM
  2. login redirect to 'page not found'
    By bigbadboy in forum General Questions
    Replies: 1
    Last Post: 6 Mar 2009, 12:40 PM
  3. Shared SSL Blank page or page not found.
    By dotcomslash in forum General Questions
    Replies: 10
    Last Post: 24 Sep 2007, 12:05 AM
  4. SSL and cart page not found
    By Zeuster in forum General Questions
    Replies: 2
    Last Post: 21 Aug 2007, 02:32 PM
  5. SSL Question - Page Not Found
    By katrobb in forum Basic Configuration
    Replies: 2
    Last Post: 28 Nov 2006, 06:04 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