afalvo Posted December 3, 2004 Posted December 3, 2004 I just recently installed osCommerce from my hosting proivders admin panel. The installed process went well. I have set up all the necessary categories to test the store out. For payment modules, I am accepting credit cards (via email). I set up the shipping for per item fee and all my company info for Shipping/Packing category. I have added only a couple of items to my store so I can test things to see if everything is working proplerly. I add a couple of items to my shopping cart and when I go to Checkout, the server can not find the appropiate file which should be checkout_shipping.php. Well the file is there right in to root directory of my online store. This problem also happens when you go to "My Account" and "Create A New Account." The appropiate files login.php and account.php are both there in the root directory. I like to know if I missed something configuring my store. I would also like to know if I have to modify any of these or other files so this can work. I am under a strict deadline and any help would be greatly appreciated.
Guest Posted December 3, 2004 Posted December 3, 2004 most likely you enabled ssl for the site yet do not have an ssl certificate. in your includes/configure.php set ssl to false
Guest Posted December 11, 2004 Posted December 11, 2004 most likely you enabled ssl for the site yet do not have an ssl certificate. in your includes/configure.php set ssl to false <{POST_SNAPBACK}> I have the same problem. And yes, I can confirm that I selected Yes to SSL. A mistake, but it was set to yes. BUT! I went into my configure file and set SSL to false with no luck. My website insists that it should use the https://, any ideas? define('HTTP_SERVER', 'http://craftybastard.com'); define('HTTP_CATALOG_SERVER', 'http://craftybastard.com'); define('HTTPS_CATALOG_SERVER', 'http://craftybastard.com'); define('ENABLE_SSL_CATALOG', 'FALSE'); define('DIR_FS_DOCUMENT_ROOT', '/home/bbdcentr/public_html/shop/'); define('DIR_WS_ADMIN', '/shop/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/bbdcentr/public_html/shop/admin/'); define('DIR_WS_CATALOG', '/shop/'); define('DIR_FS_CATALOG', '/home/bbdcentr/public_html/shop/'); 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/');
afalvo Posted December 11, 2004 Author Posted December 11, 2004 I have the same problem. And yes, I can confirm that I selected Yes to SSL. A mistake, but it was set to yes. BUT! I went into my configure file and set SSL to false with no luck. My website insists that it should use the https://, any ideas? define('HTTP_SERVER', 'http://craftybastard.com'); define('HTTP_CATALOG_SERVER', 'http://craftybastard.com'); define('HTTPS_CATALOG_SERVER', 'http://craftybastard.com'); define('ENABLE_SSL_CATALOG', 'FALSE'); define('DIR_FS_DOCUMENT_ROOT', '/home/bbdcentr/public_html/shop/'); define('DIR_WS_ADMIN', '/shop/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/bbdcentr/public_html/shop/admin/'); define('DIR_WS_CATALOG', '/shop/'); define('DIR_FS_CATALOG', '/home/bbdcentr/public_html/shop/'); 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/'); <{POST_SNAPBACK}> Jeremy, I found out the following lines of code (listed below) in my configure.php were missing the Domain Name. This was the reason why I couldn't checkout or login into my test account. The domain sever was not defined for cookie handling. Let me know if this helps. define('HTTP_COOKIE_DOMAIN', 'DOMAIN NAME'); define('HTTPS_COOKIE_DOMAIN', 'DOMAIN NAME');
afalvo Posted December 11, 2004 Author Posted December 11, 2004 most likely you enabled ssl for the site yet do not have an ssl certificate.? in your includes/configure.php set ssl to false <{POST_SNAPBACK}> John, I wanted to say thank you for the help. Once I disabled SSL everything worked fine. Just one problem, now I do not have SSL running. I enabled SSL again (I am using a shared certificate) in the configure.php file and saw the following 2 lines were missing variables. define('HTTP_COOKIE_DOMAIN', 'DOMAIN NAME'); define('HTTPS_COOKIE_DOMAIN', 'DOMAIN NAME'); The domain severs were not defined for cookie handling. Now everything works perfect and I have SSL running.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.