Morigan Posted December 3, 2004 Posted December 3, 2004 My Shopping Cart problem has progressed now. When customers log in to my website and look around they the sometimes get automatically logged out. It happens most often when the go to Check Out and out again without finishing the order. It doesn't happen all the time but enough to be a pain. Not sure if this is related but my marketing guys says he can't impliment tracking on the site either? Any ideas anyone, please? :'( Joe
Guest Posted December 3, 2004 Posted December 3, 2004 you have a marketing guy doing php? what are your settings in sessions? what is store sessions set to in your configure.php
Morigan Posted December 3, 2004 Author Posted December 3, 2004 Hi Again, Not sure what to look for so I pasted the lot. My site isn't - 'http://www.devlyncandles.com/'); by the way so I am unsure why it is written? My marketing guy is setting up the tracking for an affiliate programme but I don't think that is the cause of my woes? Thanks again, Joe <?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.devlyncandles.com/'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://dprhensim42.doteasy.com/~admin27'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', yes); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.devlyncandles.com'); define('HTTPS_COOKIE_DOMAIN', 'dprhensim42.doteasy.com/~admin27'); define('HTTP_COOKIE_PATH', 'catalog/'); define('HTTPS_COOKIE_PATH', 'catalog/'); define('DIR_WS_HTTP_CATALOG', 'catalog/'); define('DIR_WS_HTTPS_CATALOG', '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', '/home/devlynca/public_html/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'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', define('DB_SERVER_PASSWORD', define('DB_DATABASE', define('USE_PCONNECT', 'true'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?>
♥Vger Posted December 3, 2004 Posted December 3, 2004 define('HTTP_SERVER', 'http://www.devlyncandles.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://dprhensim42.doteasy.com/~admin27'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', yes); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.devlyncandles.com'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/catalog/'); and take a look at this line ('HTTPS_SERVER', 'https://dprhensim42.doteasy.com/~admin27'); it should probably read ('HTTPS_SERVER', 'https://dprhensim42.doteasy.com/devlyncandles.com'); In my experience the file pathway you have at present is where you end up at, after the pathway I posted has been interpreted. Trying to access it directly may cause a problem. Vger
Morigan Posted December 6, 2004 Author Posted December 6, 2004 My hostings guys tell me they set the SSL Certificate OK but I will forward your comments, thanks. I am confused about 'www.devlyncandles.com'); too as that isn't my site. I guess that is the way the shared SSL works? Thanks, joe
Recommended Posts
Archived
This topic is now archived and is closed to further replies.