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.
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.