Guest Posted February 16, 2007 Share Posted February 16, 2007 Help when updating an order and notifying the customer by email, for some reason the URL within that email it is sending out is wrong for example, the system will generate an email link with the following https://www.awebsiteaddress.biz/account_his...hp?order_id=297 but it should state https://www.awebsiteaddress.biz/~myaccount/...hp?order_id=297 it seems to be missing out the account details for my SSL has anyone come across this and if so what is the fix for it many thanks Link to comment Share on other sites More sharing options...
Velveeta Posted February 16, 2007 Share Posted February 16, 2007 Helpwhen updating an order and notifying the customer by email, for some reason the URL within that email it is sending out is wrong for example, the system will generate an email link with the following https://www.awebsiteaddress.biz/account_his...hp?order_id=297 but it should state https://www.awebsiteaddress.biz/~myaccount/...hp?order_id=297 it seems to be missing out the account details for my SSL has anyone come across this and if so what is the fix for it many thanks Can you paste the https_server and https_cookie_path info from your includes/configure.php file here? Richard. Richard Lindsey Link to comment Share on other sites More sharing options...
Guest Posted February 17, 2007 Share Posted February 17, 2007 Can you paste the https_server and https_cookie_path info from your includes/configure.php file here? Richard. details of the configure.php are shown below define('HTTP_SERVER', 'http://www.mywebsite.co.uk'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://www.ultrasecure.biz/~mywesbite'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.mywebsite.co.uk'); define('HTTPS_COOKIE_DOMAIN', '/'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/'); do you need any further info? thanks Link to comment Share on other sites More sharing options...
Velveeta Posted February 17, 2007 Share Posted February 17, 2007 details of the configure.php are shown below define('HTTP_SERVER', 'http://www.mywebsite.co.uk'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://www.ultrasecure.biz/~mywesbite'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.mywebsite.co.uk'); define('HTTPS_COOKIE_DOMAIN', '/'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/'); do you need any further info? thanks Set this value like so and see if it works for you: define('HTTPS_COOKIE_DOMAIN', 'www.ultrasecure.biz/~mywesbite'); Richard. Richard Lindsey Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.