Woohoo! I managed to fix that bug that prevented Safari users (including myself) from saving their cookies at this site. If you’re using GoddessBlog, you need to rewrite a few lines to make it work. If anybody else notices any weirdness when leaving comments here (like if it suddenly won’t remember your name), please let me know.In addcomment.php, look at lines 34-37. I’m using the “header” command to send the cookies to the browser. Safari is kinda puking on this, so instead we’ll send them a different way. Just change those lines to look like this:
$date = date(“D, d-M-y H:i:s”, ($time));
setcookie (“userName”, $userName, $time, ‘/’,
‘www.web-goddess.org’);
setcookie (“userEmail”, $userEmail, $time, ‘/’, ‘www.web-goddess.org’);
setcookie (“userUrl”, $userUrl, $time, ‘/’, ‘www.web-goddess.org’);
That should do it! Oh, and of course, replace the www.web-goddess.org with your own domain name. 🙂