Zen Cart Logo
Forums / General Questions / A ssl question

A ssl question

Locked

Views: 668

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
20 Apr 2009, 10:42 AM
#1
didee avatar

didee

Zen Follower

Join Date:
Jan 2009
Location:
Queensland, Australia
Posts:
115
Plugin Contributions:
0

A ssl question

Hi, I am going to put SSl certificate on my site and I have asked my server. They have said" A certificate can be installed on a domain or a subdomain name." I have no idea, what would be the best. can anyone enlighten me. I only need my login pages protected.as i am using paypal.:smile: thanks

20 Apr 2009, 11:43 AM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: A ssl question

If your Zencart installation is located in the root directory, you want the SSL certified for the domain. If it's in a subdirectory like /shop, you'll need the certificate to point to that directory, but I think it would be a better idea to move Zencart to the root.

20 Apr 2009, 12:01 PM
#3
didee avatar

didee

Zen Follower

Join Date:
Jan 2009
Location:
Queensland, Australia
Posts:
115
Plugin Contributions:
0

Re: A ssl question

Thanks for your quick reply. my zen cart is in the root, so that has answered my question. I find this ssl stuff very daunting. I feel like i should pay someone to do it for me, as I am just about zen carted out with the problems i have had. Mind you we have overcome them to date, with lots of help from this forum, so thanks again.

20 Apr 2009, 1:43 PM
#4
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: A ssl question

You really don't have to do much. Your host will install the SSL, and then you'll change a couple of lines in the configure.php files. Zencart does the rest.

26 Apr 2009, 6:00 PM
#5
girlgonzo avatar

girlgonzo

New Zenner

Join Date:
Mar 2009
Posts:
6
Plugin Contributions:
0

Re: A ssl question

I installed a SSL certificate yesterday thru godaddy on my domain and site is in root directory. Now my admin area shows up fine with the SSL. My catalog home page comes up blank. I changed the configure .php in both the admin and catalog to TRUE for SSL. Any ideas why my catalog side is not showing up?

https://www.couponclicknsave.com

Thanks
girlgonzo

26 Apr 2009, 9:37 PM
#6
idw avatar

idw

Zen Follower

Join Date:
Dec 2006
Location:
Ontario
Posts:
111
Plugin Contributions:
0

Re: A ssl question

You have to change your config file more than just changing it to true. Starting at line 14 you will see this. Change the spot that is red.

// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
define('HTTP_SERVER', 'http://www.your website);
define('HTTPS_SERVER', 'https://your ssl server');

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