Hi All,
I am putting the final polish on my first OSC cart.
I notice that the emails that the customer gets when I change the status of an order to "processing" or "delivered" contain an invalid path and result in a 404 error.
The first email the cust gets has a good path in it:
https://c4ns2.securesites.net/secure...hp?order_id=39
The processing and delivered emails have:
https://c4ns2.securesites.net/catalo...hp?order_id=39
The second URL is the non SSL path after "securesites.net". Why is the cart creating an https URL using the http path? I think my config.php file has all the right info...at least everything else in the cart works just fine.
Code:define('HTTP_SERVER', 'http://tawsom.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://c4ns2.securesites.net'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'tawsom.com'); define('HTTPS_COOKIE_DOMAIN', 'c4ns2.securesites.net'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/secure/tawsom.com/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/secure/tawsom.com/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/'); //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', '/usr/local/apache/htdocs/secure/tawsom.com/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
Any clues about how or where I can straighten this out?
Thanks!
Tim





LinkBack URL
About LinkBacks






Bookmarks