Hi,
I have been up for nearly 48 hours now. I have been trying to get the SSL to work on my site. I did not want to opost YET ANOTHER SSL help post, but I just have to. I have been working on this for the past 4 days for a toal of 76 hours and I cannot make any progress using the threads I have read.
I have searched and read ALL posts regarding my problem both in this forum and the forum at http://forums.oscommerce.com but I cannot get my account and checkout urls to switch to https.
I am using OSC version 2.2 MSI. I am using 2checkout as my credit card processor.
My host is neureal.com a have purchased a didicate IP for my domain and have installed SSL. I have not bought a certificate but that is not a worry right now, I just want to get the URLs to change to https at this point.
The following are what my configure.php files read in both my /admin/includes & /catalog/includes directories.
This is what they are CURRENTLY, but I have tried everything I have read in all other SSL help posts and the results are the same. I CANNOT GET MY URLS TO CHANGE TO HTTPS.
My site is http://www.discountguitarcity.com
admin/includes/configure.php
<?php
/*
$Id: configure.php,v 1.13 2002/07/20 09:08:31 project3000 Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2002 osCommerce
Released under the GNU General Public License
*/
// define our webserver variables
// FS = Filesystem (physical)
// WS = Webserver (virtual)
define('HTTP_SERVER', 'http://www.discountguitarcity.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers
define('HTTP_CATALOG_SERVER', 'http://www.discountguitarcity.com');
define('HTTPS_CATALOG_SERVER', 'https://www.discountguitarcity.com/');
define('ENABLE_SSL_CATALOG', true); // secure webserver for catalog module I HAVE TRIED THIS WITH AND WITHOUT SINGLE QUOTES AROUND TRUE.
define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
define('DIR_WS_ADMIN', '/admin/');
define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN);
define('DIR_WS_CATALOG', '/catalog/');
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
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', DIR_WS_CATALOG . 'includes/languages/');
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_BACKUP', DIR_FS_ADMIN . 'backups/');
// define our database connection
define('DB_SERVER', '207.44.196.22' THIS IS THE IP ADDRESS WHERE MY MYSQL DB IS HOSTED);
define('DB_SERVER_USERNAME', 'MY USERNAME FOR MY MYSQL DB IS HERE');
define('DB_SERVER_PASSWORD', 'MY PASSWORD FOR MY MYSQL DB IS HERE');
define('DB_DATABASE', 'DGC' THIS IS THE NAME I CAVE MY MYSQL DB);
define('USE_PCONNECT', 'false');
define('STORE_SESSIONS', '');
?>
catalog/includes/configure.php
<?php
/*
$Id: configure.php,v 1.13 2003/02/10 22:30:51 hpdl Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 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.discountguitarcity.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://www.discountguitarcity.com'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', 'true'); // secure webserver for checkout procedure?
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
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_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
define('DIR_FS_DOCUMENT_ROOT', $HTTP_SERVER_VARS['DOCUMENT_ROOT']); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
// define our database connection
define('DB_SERVER', '207.44.196.22') (This is the IP address where my my mysql DB is hosted); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'my username is here');
define('DB_SERVER_PASSWORD', 'my password is here');
define('DB_DATABASE', 'the name 'DGC' THIS IS THE NAME I GAVE MY MYSQL DB);
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'
?>
Any help will greatly be appreciated. I have spent way to much tim eon this already and I am going to have to leave OSC if I cannot solve this problem. I DO NOT want to do this but realistically, my business is suffering and I need a more reliable, user friendly shopping cart solution.
Don't get me wrong, I love OSC and the community, but at this point it does not seem very practical. I need to rest once in a while and I need to get my site working 100% and make money.
Thanks in advance.
Carlo




LinkBack URL
About LinkBacks






Bookmarks