Phantomhp Posted October 5, 2005 Share Posted October 5, 2005 Hey, just got my SSL from GoDaddy. First time to deal with these certificates but they said they have already installed it onto my hosting account. So does this mean I don't need to do anything besides change the https setting in the 2 config files? I have already done so but my admin page still says I am not secured by a ssl connection. Thanks, Mike Link to comment Share on other sites More sharing options...
Sierrab Posted October 5, 2005 Share Posted October 5, 2005 Hey, just got my SSL from GoDaddy. First time to deal with these certificates but they said they have already installed it onto my hosting account. So does this mean I don't need to do anything besides change the https setting in the 2 config files? I have already done so but my admin page still says I am not secured by a ssl connection. Thanks, Mike If you have not already done it change the following line in admin/includes/configure.phpto whatever your secure path is. Your admin folder will then be secured Note to access it you will have to go via the secure address rather than www.yourstore.com/admin/ // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'https://secure.cheapnet.co.uk/~sierrab/catalog/'); // eg, http://localhost - should not be empty for productive servers Steve Link to comment Share on other sites More sharing options...
unitedlifestyles Posted October 5, 2005 Share Posted October 5, 2005 I am trying to get oscommerce to work with ssl but no success can you please help below is my config.php // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.united-lifestyles.de'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://www.sslkundenserver.de'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.united-lifestyles.de'); define('HTTPS_COOKIE_DOMAIN', 'www.united-lifestyles.de'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/www.united-lifestyles.de/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/'); Link to comment Share on other sites More sharing options...
Guest Posted October 5, 2005 Share Posted October 5, 2005 are you using two different sites for ssl? and why? your https cookie path is going to also prevent ssl from working, better off getting your own ssl and keeping it on your server Link to comment Share on other sites More sharing options...
♥Vger Posted October 5, 2005 Share Posted October 5, 2005 I'm guessing that your shared ssl address is wrongly stated. define('HTTP_SERVER', 'http://www.united-lifestyles.de'); define('HTTPS_SERVER', 'https://ssl.kundenserver.de/united-lifestyles.de'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.united-lifestyles.de'); define('HTTPS_COOKIE_DOMAIN', 'ssl.kundenserver.de/united-lifestyles.de'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/catalog/'); Try those settings. 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.