mJULESY Posted June 7, 2005 Share Posted June 7, 2005 Hi guys ok.. 1. i purchased a SSL cert and installed it on my website (mydomain.co.uk not www.mydomain.co.uk) 2. my catalog/includes/configure.php reads define('HTTP_SERVER', 'http://www.my domain.co.uk'); define('HTTPS_SERVER', 'https://mydomain.co.uk'); define('ENABLE_SSL', 'True'); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'http://www.mydomain.co.uk'); define('HTTPS_COOKIE_DOMAIN', 'https://mydomain.co.uk'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); 3. my admin/includes/configure.php reads define('HTTP_SERVER', 'http://www.mydomian.co.uk'); define('HTTP_CATALOG_SERVER', 'http://www.mydomain.co.uk'); define('HTTPS_CATALOG_SERVER', 'https://mydomain.co.uk'); define('ENABLE_SSL_CATALOG', 'True'); Questions: 1. Should my https_server/https_Cookie have the "www" in front of it or not? my cert was issued in mydomain.co.uk format. 2. When i hover over the login button i get what i think is the correct url in the status bar before i click the button i.e https://mydomain.co.uk/login...... BUT when i click on it i get a page not found? I am installed on an Apache web server, my catalog is installed in the root of my server (i.e not in a /catalog dir) How else can i invistigate what is going on? What should my config.php be set to as i ahev following most advise but all seem to be different! I am on the aponion that there is something wrong at my hosting company as i have read all the posts and tried all the things i can think of!! needing your help Mjulesy Link to comment Share on other sites More sharing options...
Guest Posted June 7, 2005 Share Posted June 7, 2005 define('HTTP_COOKIE_DOMAIN', 'http://www.mydomain.co.uk'); define('HTTPS_COOKIE_DOMAIN', 'https://mydomain.co.uk'); to: define('HTTP_COOKIE_DOMAIN', 'www.mydomain.co.uk'); define('HTTPS_COOKIE_DOMAIN', 'www.mydomain.co.uk'); this: define('HTTPS_CATALOG_SERVER', 'https://www.mydomain.co.uk'); to: define('HTTPS_CATALOG_SERVER', 'https://www.mydomain.co.uk'); have your host restart apache Link to comment Share on other sites More sharing options...
mJULESY Posted June 7, 2005 Author Share Posted June 7, 2005 define('HTTP_COOKIE_DOMAIN', 'http://www.mydomain.co.uk');define('HTTPS_COOKIE_DOMAIN', 'https://mydomain.co.uk'); to: define('HTTP_COOKIE_DOMAIN', 'www.mydomain.co.uk'); define('HTTPS_COOKIE_DOMAIN', 'www.mydomain.co.uk'); this: define('HTTPS_CATALOG_SERVER', 'https://www.mydomain.co.uk'); to: define('HTTPS_CATALOG_SERVER', 'https://www.mydomain.co.uk'); have your host restart apache <{POST_SNAPBACK}> Hi john, thansk for your relpy. will try thoses as soon as customer get off my site ;-) as you for last comments: this: define('HTTPS_CATALOG_SERVER', 'https://www.mydomain.co.uk'); to: define('HTTPS_CATALOG_SERVER', 'https://www.mydomain.co.uk'); are the two define statements not the same, i cant see the difference in the two line? many thanks again Mjulesy Link to comment Share on other sites More sharing options...
Guest Posted June 7, 2005 Share Posted June 7, 2005 my fault, just take a look at the original, you will see the difference u have Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.