ScotMK Posted September 22, 2005 Posted September 22, 2005 Hi I am trying to get the ssl working but each time I turn the enable to true, I get file not found error. The site is not live yet, but it would use the same ssl path when it is apart from the workd zboard. Any help would be appreciated. define('HTTP_SERVER', 'http://www.planet7.co.uk/clients/'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://storm.bpweb.net/secure/zboard/br/'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'http://www.planet7.co.uk/clients/'); define('HTTPS_COOKIE_DOMAIN', 'https://storm.bpweb.net/secure/zboard/'); define('HTTP_COOKIE_PATH', '/br/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/br/'); define('DIR_WS_HTTPS_CATALOG', ''); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); Thanks Scot
ScotMK Posted September 22, 2005 Author Posted September 22, 2005 Hi I have sorted it out, it was me being a donut. Thanks Scot
♥Vger Posted September 22, 2005 Posted September 22, 2005 define('HTTP_SERVER', 'http://www.planet7.co.uk/clients'); define('HTTPS_SERVER', 'https://storm.bpweb.net/secure/zboard'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.planet7.co.uk'); define('HTTPS_COOKIE_DOMAIN', 'storm.bpweb.net/secure/zboard'); define('HTTP_COOKIE_PATH', '/br/'); define('HTTPS_COOKIE_PATH', '/br/'); define('DIR_WS_HTTP_CATALOG', '/br/'); define('DIR_WS_HTTPS_CATALOG', '/br/'); That should work, but unfortunately this pathway (https://storm.bpweb.net/secure/zboard/br) gets a File Not Found error. So, either it is the wrong pathway (check with your hosts), or else they have one of those rubbish two-folder systems where you have to duplicate all http files/folders in a seperate https (ssl) folder. Vger
Guest Posted September 22, 2005 Posted September 22, 2005 Aren't the cookie domains supposed to be without "http://" or "https"://"? Don't take my word for it I might be wrong but give it a go....
Recommended Posts
Archived
This topic is now archived and is closed to further replies.