heretoo Posted July 15, 2005 Share Posted July 15, 2005 I have gotten acceptance and authorization through authorize.net but when they go to enter the credit card info there is no SSL there. I thought that would be automatic, is there a setting or config I need to do? Link to comment Share on other sites More sharing options...
♥Vger Posted July 15, 2005 Share Posted July 15, 2005 If your host provides a shared ssl then you can use that, otherwise you have to buy and install a full certificate. Vger Link to comment Share on other sites More sharing options...
Guest Posted July 15, 2005 Share Posted July 15, 2005 I have gotten acceptance and authorization through authorize.net but when they go to enter the credit card info there is no SSL there. I thought that would be automatic, is there a setting or config I need to do? <{POST_SNAPBACK}> First you will need to purchase a SSL Certificate or use your hosting providers shared SSL certificate... Then you will need to do the edits of your oscommerce configure.php files to turn this feature on... Mike Link to comment Share on other sites More sharing options...
heretoo Posted July 15, 2005 Author Share Posted July 15, 2005 Thank you they do proivde shared SSL? Is this okay or is direct SSL better? Where do I go to find out how to edit the configure.php files? Thanks Link to comment Share on other sites More sharing options...
heretoo Posted July 15, 2005 Author Share Posted July 15, 2005 HEllo this is my file, what do I need to change. I changed the private info for posting purposes. <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 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://mystore.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://mystore.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'mystore.com'); define('HTTPS_COOKIE_DOMAIN', 'mystore.com'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_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', '/home/mystore/public_html/'); 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 NULL for productive servers define('DB_SERVER_USERNAME', 'mystorel_osc2'); define('DB_SERVER_PASSWORD', 'skhkhkdsk'); define('DB_DATABASE', 'mystore_osc2'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> Link to comment Share on other sites More sharing options...
Guest Posted July 15, 2005 Share Posted July 15, 2005 you need to get teh proper path for your shared ssl certificate from your host Link to comment Share on other sites More sharing options...
heretoo Posted July 15, 2005 Author Share Posted July 15, 2005 Hi I do have it but do I only need to change these two lines in the code [ define('HTTPS_SERVER', 'https://mystore.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? Do I change SSL_to true and update the https://mystore to what they gave me. I tried that but it still goes to http://sunnycollection.com/login.php Should it not goto htts://sunnycollection.com/login.php Link to comment Share on other sites More sharing options...
RidersUp Posted July 15, 2005 Share Posted July 15, 2005 Hi I do have it but do I only need to change these two lines in the code [ define('HTTPS_SERVER', 'https://mystore.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? Do I change SSL_to true and update the https://mystore to what they gave me. I tried that but it still goes to http://sunnycollection.com/login.php Should it not goto htts://sunnycollection.com/login.php <{POST_SNAPBACK}> Can you use the ssl.catalog.com connection with oscommerce? They told me that their ssl connection did not support php. Does anyone else use catalog.com? Link to comment Share on other sites More sharing options...
♥Vger Posted July 15, 2005 Share Posted July 15, 2005 They told me that their ssl connection did not support php In which case you're stuffed - time to move hosts. Vger Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.