kitchenniche Posted April 6, 2005 Posted April 6, 2005 Hi, i do really know nothing about SSL - Installation.... i have gotten my SSL Certificate now but i have no clue how to install it. I want that the ssl-connection is there, at that point where my customers have to put in their credit card information... May somebody explain me step by step how i can install it? thanks very much sandra HIM - Dark Light - Out on 26/09/05
Guest Posted April 6, 2005 Posted April 6, 2005 What control panel are you using? Do you have a shared hosting or a dedicated server? If dedicated server, is it a managed package or an unmanaged package?
kitchenniche Posted April 6, 2005 Author Posted April 6, 2005 What control panel are you using? Do you have a shared hosting or a dedicated server? If dedicated server, is it a managed package or an unmanaged package? <{POST_SNAPBACK}> aahm i'm not sure "what" control panel i use, do you mean the software??? This would bi "Apache". It's a dedicated SSL not a shared. I'm also not sure if it is managed or unmanaged... the only thing i gotten from my hoster is a CSR... a text with lots of letters and numbers... Sorry that i couldn't answer the questions, my knowledge about SSL is just not very big... HIM - Dark Light - Out on 26/09/05
Guest Posted April 6, 2005 Posted April 6, 2005 aahm i'm not sure "what" control panel i use, do you mean the software??? This would bi "Apache". It's a dedicated SSL not a shared. I'm also not sure if it is managed or unmanaged... the only thing i gotten from my hoster is a CSR... a text with lots of letters and numbers... Sorry that i couldn't answer the questions, my knowledge about SSL is just not very big... <{POST_SNAPBACK}> I see that you host has generated, and will install the certificate for you. You'll need to give that CSR to your SSL provider (Verisign, Geotrust etc.) at time of payment. You will then get a certificate and maybe a ca bundle, which you'll need to give to your host.
tommy11011 Posted April 6, 2005 Posted April 6, 2005 I see that you host has generated, and will install the certificate for you. You'll need to give that CSR to your SSL provider (Verisign, Geotrust etc.) at time of payment. You will then get a certificate and maybe a ca bundle, which you'll need to give to your host. <{POST_SNAPBACK}> Do you have shell access to the *nix server?
kitchenniche Posted April 6, 2005 Author Posted April 6, 2005 Do you have shell access to the *nix server? <{POST_SNAPBACK}> I have never heard of this before, sorry HIM - Dark Light - Out on 26/09/05
kitchenniche Posted April 6, 2005 Author Posted April 6, 2005 My Hoster told me that they already installed the SSL (i can go to https instead of http...) i just need to configure my oscommerce so that the https appears at that point where my customers have to put their credit card information in. Can somebody explain step by step how i can do that? thank you HIM - Dark Light - Out on 26/09/05
♥akmac Posted April 6, 2005 Posted April 6, 2005 change your admin/includes/configure.php and catalog/includes/configure.php define('HTTP_SERVER', 'http://www.yourdomain.com'); define('HTTPS_SERVER', 'https://www.yourdomain.com/'); define('ENABLE_SSL', true); Quidquid latine dictum sit, profundum viditur.
Guest Posted April 6, 2005 Posted April 6, 2005 change your admin/includes/configure.phpand catalog/includes/configure.php define('HTTP_SERVER', 'http://www.yourdomain.com'); define('HTTPS_SERVER', 'https://www.yourdomain.com/'); define('ENABLE_SSL', true); <{POST_SNAPBACK}> Good advise. :) Also change: (if applicable) define('HTTPS_COOKIE_DOMAIN', ''); to define('HTTPS_COOKIE_DOMAIN', 'www.yourdomain.com'); If this is empty or doesn't match your HTTPS_SERVER and HTTPS_COOKIE_DOMAIN (Dedicated SSL only, can and should be different for Shared SSL), you'll lose your Session IDs (empty basket from http to https)
kitchenniche Posted April 6, 2005 Author Posted April 6, 2005 change your admin/includes/configure.phpand catalog/includes/configure.php define('HTTP_SERVER', 'http://www.yourdomain.com'); define('HTTPS_SERVER', 'https://www.yourdomain.com/'); define('ENABLE_SSL', true); <{POST_SNAPBACK}> thanks for the reply. I did that but it didn't change anything... HIM - Dark Light - Out on 26/09/05
♥akmac Posted April 6, 2005 Posted April 6, 2005 thanks for the reply. I did that but it didn't change anything... <{POST_SNAPBACK}> What is your url? What url does it take you to when you click on "checkout"? Copy and paste it here. Quidquid latine dictum sit, profundum viditur.
kitchenniche Posted April 6, 2005 Author Posted April 6, 2005 What is your url? What url does it take you to when you click on "checkout"? Copy and paste it here. <{POST_SNAPBACK}> URL: http://www.kitchenniche.ca URL Checkout: http://kitchenniche.ca/checkout_shipping.p...2cb6068fc9712dd HIM - Dark Light - Out on 26/09/05
Forever Posted April 6, 2005 Posted April 6, 2005 I would talk to your host again because https://www.kitchenniche.ca/ doesn't load. URL: http://www.kitchenniche.ca URL Checkout: http://kitchenniche.ca/checkout_shipping.p...2cb6068fc9712dd <{POST_SNAPBACK}>
♥akmac Posted April 6, 2005 Posted April 6, 2005 I would talk to your host again because https://www.kitchenniche.ca/ doesn't load. <{POST_SNAPBACK}> Loads for me. It appears that your configuration files haven't been modified. Are you certain that you changed the correct files, and uploaded them to the correct locations? If you are, please paste the top half of your catalog/includes/configure.php here. Quidquid latine dictum sit, profundum viditur.
kitchenniche Posted April 7, 2005 Author Posted April 7, 2005 Loads for me. It appears that your configuration files haven't been modified. Are you certain that you changed the correct files, and uploaded them to the correct locations? If you are, please paste the top half of your catalog/includes/configure.php here. <{POST_SNAPBACK}> here you are: <?php /* $Id: configure.php,v 1.14 2003/07/09 01:15:48 hpdl Exp $ 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://kitchenniche.ca'); define('HTTPS_SERVER', 'https://kitchenniche.ca'); define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.kitchenniche.ca'); define('HTTPS_COOKIE_DOMAIN', 'www.kitchenniche.ca'); 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', '/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('HTTP_SERVER', 'http://www.kitchenniche.ca/'); define('HTTPS_SERVER', 'https://www.kitchenniche.ca/'); define('ENABLE_SSL', true); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME'])); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); HIM - Dark Light - Out on 26/09/05
kitchenniche Posted April 7, 2005 Author Posted April 7, 2005 ooops, i guess i just had to change: define('ENABLE_SSL', false); // secure webserver for checkout procedure? to define('ENABLE_SSL', true); // secure webserver for checkout procedure? it's working now, thanks a lot for your help guys HIM - Dark Light - Out on 26/09/05
Recommended Posts
Archived
This topic is now archived and is closed to further replies.