Your cert says tsilaorganics.com without the www - you need to not use the www in any of your URLs or you will get security warnings. You also need to make sure the urls are consistant and NOT use /catalog in the main URL
Your cert says tsilaorganics.com without the www - you need to not use the www in any of your URLs or you will get security warnings. You also need to make sure the urls are consistant and NOT use /catalog in the main URL
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
I made the following edits and it still doesn't seem to work.
The admin is:
define('HTTP_SERVER', 'http://www.tsilaorganics.com/catalog');
define('HTTPS_SERVER', 'https://www.tsilaorganics.com/catalog');
define('HTTP_CATALOG_SERVER', 'http://www.tsilaorganics.com/catalog');
define('HTTPS_CATALOG_SERVER', 'https://www.tsilaorganics.com/catalog');
// secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'false');
the regular includes is:
define('HTTP_SERVER', 'http://www.tsilaorganics.com/catalog');
define('HTTPS_SERVER', 'https://www.tsilaorganics.com/catalog');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
You can run with a shared ssl but you will have to copy the whole catalog to your shared ssl folder. Then make sure the paths in the configure.php on your https server point to the files on that server, e.g e:/sslroot/secure_folder/store, and the http settings at the top are set to your http site and the https setting are set to the secure site and enable ssl is set to true. Make sure that the database settings refer to your database on the http site.
You will then have to set you configure.php settings on the http site to point to the ssl folder under the https line and again enable ssl = true.
It does work as I have done it but you will have to maintain two sets of you files but not the database contents, so if you edit a .php file, for example a new page, you will have to copy it to the secure site.
The ideal option is to get a host that gives you a dedicated ssl (around £40)and then the ssl space maps seamlessly to you normal web space.
Hope that helps