Terry_dZi Posted July 22, 2004 Posted July 22, 2004 Hello All, I recently installed a security cerficate for my site and now I cannot access my checkout function. Has anyone encountered this problem before? The checkout was working fine before the security installation certificate. Please help if you can.
Terry_dZi Posted July 22, 2004 Author Posted July 22, 2004 All right. I have gotten the checkout function to work, but I do not think my site is secure. I no longer see the pad lock. My certificate is through comodo. Here is my configuration.php code. Is there something here I need to change?- http://www.tibetcollection.com/ <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.tibetcollection.com'); // eg, http://localhost - should not be NULL for productive servers define('HTTPS_SERVER', 'http://www.tibetcollection.com'); // eg, https://localhost - should not be NULL for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.tibetcollection.com'); define('HTTPS_COOKIE_DOMAIN', 'www.tibetcollection.com'); define('HTTP_COOKIE_PATH', 'catalog'); define('HTTPS_COOKIE_PATH', 'catalog'); define('DIR_WS_CATALOG', '/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); // If "URL fopen wrappers" are enabled in PHP (which they are in the default configuration), this can be a URL instead of a local pathname 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_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/'); define('DIR_FS_DOCUMENT_ROOT', '/home/dzi_web/public_html'); define('DIR_FS_CATALOG', '/home/dzi_web/public_html/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'localhost'); // eg, localhost - should not be NULL for productive servers define('DB_SERVER_USERNAME', 'dziweb_dzi'); define('DB_SERVER_PASSWORD', 'dzi!123'); define('DB_DATABASE', 'dziweb_catalog'); define('USE_PCONNECT', 'true'); // use persistent connections? define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql' define('MAX_DISPLAY_FEATURED_PRODUCTS', '6'); define('MAX_DISPLAY_FEATURED_PRODUCTS_LISTING', '10'); define('FEATURED_PRODUCTS_DISPLAY', true); define('DIR_WS_THEMES', DIR_WS_INCLUDES . 'theme/'); ?>
scotte Posted July 22, 2004 Posted July 22, 2004 um you should try https:// not http EDIT Well tried it to no avial..
kepa Posted July 22, 2004 Posted July 22, 2004 I don't think your ceritificate is installed or installed correctly. If it is, what is the ssl url (domain)? I tried https://www.tibetcollection.com and nothing came up.
kepa Posted July 22, 2004 Posted July 22, 2004 I've always liked your website by the way...nice bells and whistles you've added.
Terry_dZi Posted July 22, 2004 Author Posted July 22, 2004 Appreciate the kind words I'll pass it on to the old web admin.
Terry_dZi Posted July 23, 2004 Author Posted July 23, 2004 I'm still having problems trying to get my security certificate to work. I've reinstalled it on more than 3 occasions. I am now getting this error when after modifying my configuration.php file. Does anyone have an idea where I've gone wrong? I'm using a dedicated security certificate. Security failure. Data encryption error. <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.tibetcollection.com'); // eg, http://localhost - should not be NULL for productive servers define('HTTPS_SERVER', 'https://www.tibetcollection.com'); // eg, https://localhost - should not be NULL for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'http://www.tibetcollection.com'); define('HTTPS_COOKIE_DOMAIN', 'https://www.tibetcollection.com'); define('DIR_WS_CATALOG', '/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); // If "URL fopen wrappers" are enabled in PHP (which they are in the default configuration), this can be a URL instead of a local pathname 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_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/'); define('DIR_FS_DOCUMENT_ROOT', '/home/dzi_web/public_html'); define('DIR_FS_CATALOG', '/home/dzi_web/public_html/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'localhost'); // eg, localhost - should not be NULL for productive servers define('DB_SERVER_USERNAME', 'dziweb_dzi'); define('DB_SERVER_PASSWORD', 'dzi!123'); define('DB_DATABASE', 'dziweb_catalog'); define('USE_PCONNECT', 'true'); // use persistent connections? define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql' define('MAX_DISPLAY_FEATURED_PRODUCTS', '6'); define('MAX_DISPLAY_FEATURED_PRODUCTS_LISTING', '10'); define('FEATURED_PRODUCTS_DISPLAY', true); define('DIR_WS_THEMES', DIR_WS_INCLUDES . 'theme/'); ?>
Terry_dZi Posted July 26, 2004 Author Posted July 26, 2004 When using a mac I get an error message that says: Data decryption error but when using a pc I get an error page saying the page cannot be found. Has anyone encountered this problem after installing a security certificate? Please Help!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.