Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

SSL setup.


Wanwan

Recommended Posts

Hi,

 

I got my SSL installed in my host server and is now activated. The SSL is install to the root, which is www.mydomain.net, but my index.php is in a subfolder -"catalog" folder, and I also enable the SSL to "True" in both includes/cofigure.php and admin/includes/configure.php. That is all I had set so far.

 

The admin page still telling me I am Not protected by a secure SSL connection. Any thing else I need to fix?

 

I have read the osCommerce Knowledge Base for setting SSL instruction. Still don't really understand the full text.

Wanwan -- %_%_

Link to comment
Share on other sites

Hi,

 

I got my SSL installed in my host server and is now activated. The SSL is install to the root, which is www.mydomain.net, but my index.php is in a subfolder -"catalog" folder, and I also enable the SSL to "True" in both includes/cofigure.php and admin/includes/configure.php. That is all I had set so far.

 

The admin page still telling me I am Not protected by a secure SSL connection. Any thing else I need to fix?

 

I have read the osCommerce Knowledge Base for setting SSL instruction. Still don't really understand the full text.

 

a url??

 

for the admin you need to change the first http define to your secure path https://

The Knowledge Base is a wonderful thing.

Do you have a problem? Have you checked out Common Problems?

There are many very useful osC Contributions

Are you having trouble with a installed contribution? Have you checked out the support thread found Here

BACKUP BACKUP BACKUP!!! You did backup, right??

Link to comment
Share on other sites

a url??

 

for the admin you need to change the first http define to your secure path https://

 

firstly, url = www.blissfulfamily.net ----- this is the root

 

you mean the admin/includes/configure.php change the first http define to your secure path https:// ?

 

 

what should put in https://_________? is my url??

Wanwan -- %_%_

Link to comment
Share on other sites

firstly, url = www.blissfulfamily.net ----- this is the root

 

you mean the admin/includes/configure.php change the first http define to your secure path https:// ?

what should put in https://_________? is my url??

 

That's correct here is what your catalog/includes/configure.php should look like -

 

define('HTTP_SERVER', 'http://www.yourdomain.com'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.yourdomain.com'); // eg, https://localhost - should not be empty for productive servers

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

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

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

 

 

Replace "yourdomain.com" with your url

 

Your admin/includes/ configure.php will look like this -

 

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

define('HTTPS_SERVER', 'http://www.yourdomain.com');// eg, http://localhost - should not be empty for productive servers

define('HTTP_CATALOG_SERVER', 'http://www.yourdomain.com');

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

define('ENABLE_SSL', 'true');

 

Hope that helps

Link to comment
Share on other sites

firstly, url = www.blissfulfamily.net ----- this is the root

 

you mean the admin/includes/configure.php change the first http define to your secure path https:// ?

what should put in https://_________? is my url??

 

 

Your https: path is set incorrectly in your catalog/includes/configure.php file.

 

When you click on a secure page (create account) you get

 

 

https://www.blissfulfamily.netcreate_account.php/

 

You are missing /catalog/ from the path. it should look like

 

https://www.blissfulfamily.net/catalog/create_account.php/

 

 

For your admin you need to set the url in your configure.php file to where your files are located

 

ie. https://www.blissfulfamily.net/catalog/ or wherever they happen to be.

The Knowledge Base is a wonderful thing.

Do you have a problem? Have you checked out Common Problems?

There are many very useful osC Contributions

Are you having trouble with a installed contribution? Have you checked out the support thread found Here

BACKUP BACKUP BACKUP!!! You did backup, right??

Link to comment
Share on other sites

How about the includes/configure.php

 

do I need to change

 

define('HTTP_SERVER', 'http://www.blissfulfamily.net'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.blissfulfamily.net');

 

to

 

define('HTTP_SERVER', 'http://www.blissfulfamily.net/catalog/'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.blissfulfamily.net/catalog/');

 

??

Wanwan -- %_%_

Link to comment
Share on other sites

After I changed the both configure.php

 

from

define('HTTP_SERVER', 'http://www.blissfulfamily.net'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.blissfulfamily.net');

 

to

 

define('HTTP_SERVER', 'http://www.blissfulfamily.net/catalog/'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://www.blissfulfamily.net/catalog/');

 

The create_account.php now can be view. but there is a cross at the key log sign at the very right end corner. The SSL is not working

 

and store logo and the other images is not working.. ..

 

please goto this site take a look www.blissfulfamily.net/catalog/index.php

 

 

 

 

 

I fixed the logo and pictures problems but the key log with cross is still there???

Wanwan -- %_%_

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...