Corshas Posted April 17, 2004 Posted April 17, 2004 I have a problem with my checkout pages, every time I try to go to my account or hit the checkout button I get a 404 page not found error. I have restored every one of my database backups with the same results. Does any body have any tips on where I should start looking?
Guest Posted April 17, 2004 Posted April 17, 2004 you should be double checking your configure.php files for the proper setting for your ssl setup, possibly not pointing to the right spot
Corshas Posted April 17, 2004 Author Posted April 17, 2004 I am able to pull the site up thru https, still can't open the checkout pages or the account pages. this is my 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 © 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', ''); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // 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', ''); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'mysql'); define('DB_SERVER_PASSWORD', ''); define('DB_DATABASE', 'osCommerce'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql' ?>
Babysweet Posted April 17, 2004 Posted April 17, 2004 according to your Configure file, you don't have your site enabled with SSL at all. you need to fill these places out before you can have it enabled define('HTTP_SERVER', ''); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? this is what mine looks like, however you need to put your own info and not literally copy mine define('HTTP_SERVER', 'http://babysweet.net'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://host108.ipowerweb.com/~babyswee'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? Sincerely, Joseph Seabert
Corshas Posted April 17, 2004 Author Posted April 17, 2004 That is what I thought, I am under a shared ssl thru my host does that make a difference? Also the odd thing is that it was working up until yetserday
molafish Posted April 17, 2004 Posted April 17, 2004 shared SSL certificate is okay, you just need to know your host's server that your files reside on, (i.e. host108.ipowerweb.com as seen above).
Recommended Posts
Archived
This topic is now archived and is closed to further replies.