jamisonfitz Posted March 8, 2004 Posted March 8, 2004 Ok, im installing oscommernce thru FTP, on a globat server. I did the same thing on a powweb server and got it working fine, however one thing that throws me, is there is a folder for secure doc's and one for non.. httpdocs vs. httpsdocs... So this may be the cause of this, or possibly im making a error in the config's for a globat server. Anyways, the problem is... everything works, SO FAR... except, when you add something to the cart, it disappears, and when a user creates a account, it loops the page... If ANYBODY knows any tips or knows how to fix this please let me know. <?php /* $Id: configure.php,v 1.14 2003/07/09 01:15:48 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', 'http://urbanconvo.com'); // 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('HTTP_COOKIE_DOMAIN', 'urbanconvo.com'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/store/catalog/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/store/catalog/'); define('DIR_WS_HTTPS_CATALOG', ''); 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', 'pub/'); define('DIR_FS_CATALOG', '/usr/local/psa/home/vhosts/urbanconvo.com/httpdocs/store/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', 'localhost'); define('DB_SERVER_USERNAME', '*****'); define('DB_SERVER_PASSWORD', '*****'); define('DB_DATABASE', '******'); define('USE_PCONNECT', '*****'); define('STORE_SESSIONS', ''); ?> <?php /* $Id: configure.php,v 1.14 2003/02/21 16:55:24 dgw_ Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright ? 2002 osCommerce Released under the GNU General Public License */ // define our webserver variables // FS = Filesystem (physical) // WS = Webserver (virtual) define('HTTP_SERVER', 'http://urbanconvo.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://urbanconvo.com'); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/usr/local/psa/home/vhosts/urbanconvo.com/httpdocs/store/catalog'); // where the pages are located on the server define('DIR_WS_ADMIN', '/store/catalog/admin/'); define('DIR_FS_ADMIN', '/usr/local/psa/home/vhosts/urbanconvo.com/httpdocs/store/catalog/admin/'); define('DIR_WS_CATALOG', '/store/catalog/'); define('DIR_FS_CATALOG', '/usr/local/psa/home/vhosts/urbanconvo.com/httpdocs/store/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', 'localhost'); define('DB_SERVER_USERNAME', '*****'); define('DB_SERVER_PASSWORD', '*****'); define('DB_DATABASE', '******'); define('USE_PCONNECT', '*****'); define('STORE_SESSIONS', ''); ?>
Guest Posted March 8, 2004 Posted March 8, 2004 try storing sessions, store_sessions', 'mysql'); in each of the configure.php
jamisonfitz Posted March 8, 2004 Author Posted March 8, 2004 That didnt work, i also tried making use pconnect... Any other suggestions?
jamisonfitz Posted March 8, 2004 Author Posted March 8, 2004 Would it make a diffrence if i removed the cookie dir?
Guest Posted March 8, 2004 Posted March 8, 2004 if you are running the catalog under store, why not make your http server be http://urbanconvo.com/store and then the path to catalog is /catalog/ instead of /store/catalog/ and the cookie folder is /catalog/
jamisonfitz Posted March 8, 2004 Author Posted March 8, 2004 Ok, tried that... still nothing though, is there any errors you see in my config's off hand? Should i try another install? I set all these settings by hand cuz the install wasnt working...
jamisonfitz Posted March 8, 2004 Author Posted March 8, 2004 Installed MS1, Used the diffrent installer, works fine. Thanks.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.