Ben Çerezler ve Zend Framework 1.10 ile çalışıyorum. Bu benim kodudur:
$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?