dragon5 Posted November 24, 2006 Posted November 24, 2006 Posted this on the Mozilla/Firefox forum as well. No ideas yet. Hello. This is driving me NUTS! I get this error msg. 'We have detected that your browser does not support cookies', when attempting to access certain portions of my website, AND ONLY my website. All other sites work fine. It only happens when I use Firefox. (and even FF used to work fine) It does not happen when I use Mozilla 1.7 or IE. I have searched and read everything. Have done all the suggested fixes to no avail. Any advice would be appreciated. Thanks Tom
boxtel Posted November 25, 2006 Posted November 25, 2006 Posted this on the Mozilla/Firefox forum as well. No ideas yet. Hello. This is driving me NUTS! I get this error msg. 'We have detected that your browser does not support cookies', when attempting to access certain portions of my website, AND ONLY my website. All other sites work fine. It only happens when I use Firefox. (and even FF used to work fine) It does not happen when I use Mozilla 1.7 or IE. I have searched and read everything. Have done all the suggested fixes to no avail. Any advice would be appreciated. Thanks Tom turn off "force cookies" and check your cookie settings. Treasurer MFC
dragon5 Posted November 25, 2006 Author Posted November 25, 2006 turn off "force cookies" and check your cookie settings. Thank you, but this has been done many times! Tom
boxtel Posted November 25, 2006 Posted November 25, 2006 Thank you, but this has been done many times! Tom then live with it. Treasurer MFC
dragon5 Posted November 25, 2006 Author Posted November 25, 2006 then live with it. That was pleasant :(
rdva Posted September 18, 2007 Posted September 18, 2007 The reason is described here , the solution: find this string in /catalog/includes/application_top.php $cookie_domain = (($request_type == 'NONSSL') ? HTTP_COOKIE_DOMAIN : HTTPS_COOKIE_DOMAIN); replace with if ($_SERVER['HTTP_HOST'] = 'localhost') { $cookie_domain = ''; }else{ $cookie_domain = (($request_type == 'NONSSL') ? HTTP_COOKIE_DOMAIN : HTTPS_COOKIE_DOMAIN); }
rezonat0r Posted October 30, 2007 Posted October 30, 2007 Thank you for posting that. I was going crazy trying to figure out why cookies weren't working on my dev machine! B The reason is described here , the solution: find this string in /catalog/includes/application_top.php $cookie_domain = (($request_type == 'NONSSL') ? HTTP_COOKIE_DOMAIN : HTTPS_COOKIE_DOMAIN); replace with if ($_SERVER['HTTP_HOST'] = 'localhost') { $cookie_domain = ''; }else{ $cookie_domain = (($request_type == 'NONSSL') ? HTTP_COOKIE_DOMAIN : HTTPS_COOKIE_DOMAIN); }
Recommended Posts
Archived
This topic is now archived and is closed to further replies.