Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Configuring the SSL host.


Guest

Recommended Posts

Posted

Where do I configure the SSL Host?

 

 

THanks

Nima

Posted

includes/configure.php

 

admin/includes/configure.php

Jason

 

Simple 1-2-3 Intructions on how to get, install and configure SSL

 

The Google Sandbox explained

 

Simple to follow instructions on how to change the look of your OSC

 

How To Make A Horrible OSC Website

 

my toolbox: All things WordPress-related - All things Adobe-related - PHP Designer 2007 - Codecanyon Junkie - Crimson Editor - Winmerge - phpMyAdmin - WS_FTP

 

my installed contributions: Category Banners, File Upload feature-.77, Header Tags, Sort_Product_Attributes_1, XSellv2.3, Price Break 1.11.2, wishlist 3.5, rollover_category_images_v1.2, Short_Description_v2.1, UPSXML_v1_2_3, quickbooks qbi_v2_10, allprods v4.4, Mouseover-effect for image-buttons 1.0, Ultimate_SEO, AAP 1.41, Auto Select State Value, Fast Easy Checkout, Dynamic SiteMap v2.0, Image Magic, Links Manager 1.14, Featured Products, Customer Testimonials, Article Manager, FAQ System, and I'm sure more ...

Posted

Which lines should I change?

 

I tried changing some of them but my store is still not secure.

 

Also my Login/Signup links dont work . Why?

 

Thanks

Nima

Posted

How to get your site secure (with httpS:// and a padlock):

(1) Tell your host that you want SSL installed, and that you'll get it on your own. Personally, I stay away from Shared SSL's. Get your own. They'll charge you money, and offer you a CSR (certificate signing request) code in your e-mail.

 

* At this point, make sure you know -- and they know -- if the SSL is going to be put on http://yoursite.com, or http://www.yoursite.com -- make sure both the host and the SSL company are on the same page.

 

(2) Go to an SSL company such as ev1servers.net or networksolutions.com -- just do a google search for SSL companies. The rapidSSL product is like 15 bucks, and some people like that. The QuickSSL is like 50 bucks. Some guys say to go cheap, but my personal opinion is that you get what you pay for. I wouldn't do a 15 dollar SSL. Tell this SSL company you want their SSL. E-mail them the CSR, and they will charge you. Buy the SSL, and they will send you the SSL Certificate key.

 

* Things I'd look out for: Make sure the SSL is compatible with all browsers, offers at least 129 bit data encryption, and puts a padlock in your browser.

 

(3) Take the SSL Certificate Key, and return it to your host. Your host will then install it for you.

 

(4) Then all you need to do is adjust your OSC includes/configure.php file, and admin/includes/configure.php file. Then when you point to pages that require data input, such as create-account, login, checkout, etc., you will see httpS:// instead of http://, meaning the page is secured.

 

(5) Congifure.php files: if your site is in your root directory and assigned to http://www.yoursite.com, includes/configure.php will look something like this:

define('HTTP_SERVER', 'http://www.yoursite.com');

define('HTTPS_SERVER', 'https://wwww.yoursite.com');

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.yoursite.com');

define('HTTPS_COOKIE_DOMAIN', 'www.yoursite.com');

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '/');

define('DIR_WS_HTTP_CATALOG', '/');

define('DIR_WS_HTTPS_CATALOG', '/');

 

(6) Admin/includes/configure.php:

define('HTTP_SERVER', 'https://www.thevisiondepot.com/');

define('HTTP_CATALOG_SERVER', 'https://www.thevisiondepot.com/');

define('HTTPS_CATALOG_SERVER', 'https://www.thevisiondepot.com/');

define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module

 

This is how you do the entire SSL thing, which, in my estimation, is mandatory. Good luck.

Jason

 

Simple 1-2-3 Intructions on how to get, install and configure SSL

 

The Google Sandbox explained

 

Simple to follow instructions on how to change the look of your OSC

 

How To Make A Horrible OSC Website

 

my toolbox: All things WordPress-related - All things Adobe-related - PHP Designer 2007 - Codecanyon Junkie - Crimson Editor - Winmerge - phpMyAdmin - WS_FTP

 

my installed contributions: Category Banners, File Upload feature-.77, Header Tags, Sort_Product_Attributes_1, XSellv2.3, Price Break 1.11.2, wishlist 3.5, rollover_category_images_v1.2, Short_Description_v2.1, UPSXML_v1_2_3, quickbooks qbi_v2_10, allprods v4.4, Mouseover-effect for image-buttons 1.0, Ultimate_SEO, AAP 1.41, Auto Select State Value, Fast Easy Checkout, Dynamic SiteMap v2.0, Image Magic, Links Manager 1.14, Featured Products, Customer Testimonials, Article Manager, FAQ System, and I'm sure more ...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...