rusty1001 Posted July 18, 2008 Share Posted July 18, 2008 Hi CAn anyone help me with setting a secure server site for CC processing, is there a tutorial page ? I dont see, is this admin and catalog configs?? https://mysecure.domainname.com/products/ a version of the SSL cert from client, define('HTTPS_SERVER', 'https://mysecure.domainname.com/products/'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? I assume it would be this but is there anything else, and the checkout shipping seems to straight the link, should it not process the order then go there at payment? NOOB :) thanks // Define the webserver and path parameters// * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://mydomain.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', 'http://mydomain.com'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/products/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/products/'); 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', '/home/httpd/html/products/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); Rusty ------------------------------------------- Link to comment Share on other sites More sharing options...
BryceJr Posted July 18, 2008 Share Posted July 18, 2008 This is a good guide for installing SSL for oscommerce in addition to whatever your CC processor requires from your site. How to install SSL on OSC: A Simple 1-2-3 Instruction, Simple, straighforward instructions Link to comment Share on other sites More sharing options...
rusty1001 Posted July 18, 2008 Author Share Posted July 18, 2008 thanks Rusty ------------------------------------------- Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.