I'm trying to with Cookies and Zend Framework 1.10. This is my code:
$zendCookie = new Zend_Http_Cookie('foo', 'bar', 'localhost', time() + 60 * 60 * 24 * 30);
$client = new Zend_Http_Client();
$client->setCookie($zendCookie);
But the cookies aren't stored. I checked it with Firecookie Firefox's extension. What's wrong?
Cookies on localhost with explicit domain
I think the problem is because the full-stop/period is missing before the domain name i.e. ".domain.com" only some browsers will except the domain without the leading dot.