Guest Posted June 27, 2006 Posted June 27, 2006 I had some redesign done and they messed up my ssl. now they say they fixed it but when the items are placed in the cart and you move to check out they dissappear. I know it is the cookie path or some other item in the config file but both the installer and the hosting company cant seem to find it. Can someone please please please help me with my config files. I have a marketing launch going out tomorrow to 25,000 people I am beside myself.... (some facts, I have a dedicated ssl under www.crystalintentions.com) www.crystalintentions.com I have tried many different paths for the http and the https and nothing seems to fix it: <?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://crystalintentions.com'); define('HTTPS_SERVER', 'https://crystalintentions.sslpowered.com'); define('ENABLE_SSL', true); define('HTTP_COOKIE_DOMAIN', 'crystalintentions.com'); define('HTTPS_COOKIE_DOMAIN', 'crystalintentions.sslpowered.com'); define('HTTP_COOKIE_PATH', '/shop/'); define('HTTPS_COOKIE_PATH', '/shop/'); define('DIR_WS_HTTP_CATALOG', '/shop/'); define('DIR_WS_HTTPS_CATALOG', '/shop/'); 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', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME'])); define('DIR_FS_CATALOG','/mnt/w0401/d17/s10/b027aa55/www/shop/'); 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', '*****'); 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' ?>
Terra Posted June 27, 2006 Posted June 27, 2006 You posted your username & password - I'd strongly advise to change this immediately! Never, ever post this info on a public forum, you're a sitting duck! Please change it, before somebody exploits it. Terra PS: not answering your query because I'm mean, but because I don't know the answer - your configure.php differs from the ones I'm using. My code for combining PayPal IPN with ** QTPro 4.25 ** osC Affiliate ** CCGV(trad) and how to solve the invoice already paid error General info: Allow customer to delete order comment ** FTP Programs & Text Editors ** Amending order email **
Guest Posted June 27, 2006 Posted June 27, 2006 You posted your username & password - I'd strongly advise to change this immediately! Never, ever post this info on a public forum, you're a sitting duck! Please change it, before somebody exploits it. Terra PS: not answering your query because I'm mean, but because I don't know the answer - your configure.php differs from the ones I'm using. I did not even realize... I have since changed the access. thank you
rabbitseffort Posted June 28, 2006 Posted June 28, 2006 if your ssl is under your site name then why is it like this: define('HTTPS_SERVER', 'https://crystalintentions.sslpowered.com'); maybe change that to this: define('HTTPS_SERVER', 'https://crystalintentions.com'); Just a first quick thought "I must admit that I personally measure success in terms of the contributions an individual makes to her or his fellow human beings." ---Margaret Mead--- "The answer is never the answer. What's really interesting is the mystery. If you seek the mystery instead of the answer, you'll always be seeking. I've never seen anybody really find the answer -- they think they have, so they stop thinking. But the job is to seek mystery, evoke mystery, plant a garden in which strange plants grow and mysteries bloom. The need for mystery is greater than the need for an answer. --Ken Kesey"
Nitrocharged Posted June 28, 2006 Posted June 28, 2006 but since his site sits on that ssl hosting site he should change these: define('HTTP_SERVER', 'http://crystalintentions.com'); define('HTTP_COOKIE_DOMAIN', 'crystalintentions.com'); to: define('HTTP_SERVER', 'http://crystalintentions.sslpowered.com'); define('HTTP_COOKIE_DOMAIN', 'crystalintentions.sslpowered.com'); ;)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.