PDA

View Full Version : SSL Anomalies w/ osCommerce


chaosdollheads
1-20-08, 04:13 PM
According to the Secure Socket Layer Services page, my ssl url is https://membername.powweb.com. I can access files within root and subdirectories using https://membername.powweb.com/file.ext and https://membername.powweb.com/store628/file.ext, however when I click on checkout, my browser informs me that it cannot find the server: membername.secure.powweb.com

Here's code from my configure.php (inside /includes):

define('HTTP_SERVER', 'http://www.domain.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://username.secure.powweb.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.domain.com');
define('HTTPS_COOKIE_DOMAIN', 'username.secure.powweb.com');
define('HTTP_COOKIE_PATH', '/store628/');
define('HTTPS_COOKIE_PATH', '/store628/');
define('DIR_WS_HTTP_CATALOG', '/store628/');
define('DIR_WS_HTTPS_CATALOG', '/store628/');
define('DIR_WS_IMAGES', 'images/');

I've been wrestling with this for quite awhile and am at wits end, any help would be greatly appreciated.

snowmaker
1-20-08, 04:31 PM
define('HTTPS_SERVER', https://username.secure.powweb.com');
define('HTTPS_COOKIE_DOMAIN', 'username.secure.powweb.com');


should be username.powweb.com instead of username.secure.powweb.com

chaosdollheads
1-20-08, 05:42 PM
That was the problem, thanks!