dfuzz Posted December 31, 2003 Share Posted December 31, 2003 I need some help still. Thanks in advance. :unsure: Two things that I am still having a problem with are: 1) When a registered customer trys to login to the store, the program does not recognize the customer and sends them to the sign up page. This is a valid / registered customer. It does not recognize the email & or password. 2) When I put my site down for maintiance, I get the following error messsage still: The page you are looking for might have been removed, had its name changed, or is temporarily unavailable. -------------------------------------------------------------------------------- Please try the following: If you typed the page address in the Address bar, make sure that it is spelled correctly. Open the inetsrv20.gahost.com home page, and then look for links to the information you want. Click the Back button to try another link. Click Search to look for information on the Internet. HTTP 404 - File not found Internet Explore <?php /* 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', 'http://www.actionarchery.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://inetsrv20.gahost.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'actionarchery.com'); define('HTTPS_COOKIE_DOMAIN', 'inetsrv20.gahost.com'); define('HTTP_COOKIE_PATH', '/cart/'); define('HTTPS_COOKIE_PATH', '~dfuzz62/cart/'); define('DIR_WS_HTTP_CATALOG', '/cart/'); define('DIR_WS_HTTPS_CATALOG', '/~dfuzz62/cart/'); 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/'); //Added for BTS1.0 define('DIR_WS_TEMPLATES', 'templates/'); define('DIR_WS_CONTENT', DIR_WS_TEMPLATES . 'content/'); define('DIR_WS_JAVASCRIPT', DIR_WS_INCLUDES . 'javascript/'); //End BTS1.0 define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/dfuzz62/public_html/cart/'); // absolute path required 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 empty for productive servers define('DB_SERVER_USERNAME', ''); define('DB_SERVER_PASSWORD', ''); define('DB_DATABASE', ''); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> Link to comment Share on other sites More sharing options...
Guest Posted December 31, 2003 Share Posted December 31, 2003 Try something like: define('HTTP_SERVER', 'http://www.actionarchery.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://inetsrv20.gahost.com/~actionarchery.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'actionarchery.com'); define('HTTPS_COOKIE_DOMAIN', 'inetsrv20.gahost.com/~actionarchery.com'); define('HTTP_COOKIE_PATH', '/cart/'); define('HTTPS_COOKIE_PATH', '/cart/'); define('DIR_WS_HTTP_CATALOG', '/cart/'); define('DIR_WS_HTTPS_CATALOG', '/cart/'); 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/'); //Added for BTS1.0 define('DIR_WS_TEMPLATES', 'templates/'); define('DIR_WS_CONTENT', DIR_WS_TEMPLATES . 'content/'); define('DIR_WS_JAVASCRIPT', DIR_WS_INCLUDES . 'javascript/'); //End BTS1.0 define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/dfuzz62/public_html/cart/'); // absolute path required define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); HTH Matti Link to comment Share on other sites More sharing options...
dfuzz Posted December 31, 2003 Author Share Posted December 31, 2003 Still does not work. With these settings, my page is missing the icons and I get this message when I try to login: Not Found The requested URL /~actionarchery.com/cart/login.php/action/process was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. Apache/1.3.28 Server at inetsrv20.gahost.com Port 443 Link to comment Share on other sites More sharing options...
dfuzz Posted December 31, 2003 Author Share Posted December 31, 2003 Does this sound like a cookie or other path problem in the configure.php file?????? Link to comment Share on other sites More sharing options...
Guest Posted December 31, 2003 Share Posted December 31, 2003 you should probably go to your host for your proper path for accessing the ssl certificate, pointing it back to your site Link to comment Share on other sites More sharing options...
dfuzz Posted December 31, 2003 Author Share Posted December 31, 2003 This is what they told me? I am at a loss. I was able to figure this whole thing out (with help of friend) and this one setback. The cookie domain is not set by the server but the application. Link to comment Share on other sites More sharing options...
dfuzz Posted December 31, 2003 Author Share Posted December 31, 2003 Does this help? 1054 - Unknown column 'customers_selected_template' in 'field list' select customers_selected_template as template_selected from customers where customers_id = '' [TEP STOP] Link to comment Share on other sites More sharing options...
Guest Posted January 1, 2004 Share Posted January 1, 2004 The last error is unrelated - you have installed a contribution and ommitted to run the *.sql file supplied with it on your database. It appears you have your path problem sorted?..... I did say "something like" - only you and your host know your secure server address. Matti Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.