I've set up my shopping cart, and have an SSL certificate applied to http://cart.fastfitfoods.com - I have my cart in its own sub domain, and have changed both config files to look like this:
define('HTTP_SERVER', 'http://cart.fastfitfoods.com');
define('HTTPS_SERVER', 'https://cart.fastfitfoods.com');
define('HTTP_CATALOG_SERVER', 'http://cart.fastfitfoods.com');
define('HTTPS_CATALOG_SERVER', 'https://cart.fastfitfoods.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
------------
define('HTTP_SERVER', 'http://cart.fastfitfoods.com');
define('HTTPS_SERVER', 'https://cart.fastfitfoods.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
but when i go to checkout, im getting the page is not found. Any ideas what im doing wrong?!



