Hi!


I have RapidSSL certificate and it works well with any pages in my website, but not when I tried to add product to shopping cart. It doesn't work, I can't add any products.

I followed the guide that the change on includes/configure.php and admin/includes/configure.php must be made. So I'm not sure if I did it right.

My site main domain is http://mydomain.com and my hosting company has arranged some redirect (i guess) so that whether people type with or without WWW it will link to HTTPS://WWW.mydomain.com

And when I registered for the SSL and generated the private key it appeared to be for https://www.mydomain.com NOT http://www.mydomain.com I registered with this anyway because I thought it was okay.

Now I'm in trouble. I don't know what to do.

includes/configure.php

define('HTTP_SERVER', 'http://mydomain.com');
define('HTTPS_SERVER', 'https://www.mydomain.com');
I have to change it to www, otherwise I can't log in.

define('ENABLE_SSL', 'true');

admin/includes/configure.php

define('HTTP_SERVER', 'http://mydomain.com');
define('HTTPS_SERVER', 'https://mydomain.com');
define('HTTP_CATALOG_SERVER', 'http://mydomain.com');
define('HTTPS_CATALOG_SERVER', 'https://mydomain.com');
I changed these with or without WWW several times, but I still can't add products to the shopping cart.

define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');


Please help!