I've created a Zend Framework Website App session intensive.
It works great in Chrome and Firefox but it is not working in IE. The session resets every page in IE.
Looking into the headers I find that IE browser is getting a different phpsessid cookie in every get or post within the same browser so the session is not working. In FF and Chrome the phpsessid cookie persists ok.
Anyone knows why this can happend only in IE?
I have this code in bootstrap.php:
$generalSession = new Zend_Session_Namespace('MyNameHere');
$generalSession ->setExpirationSeconds(1000 * 60);
I recover the session using:
Zend_Auth::getInstance()->getStorage()->read();
My IE configuration for privacy and security is set to minimum, using IE9.
I've tryed placing a p3p cookie in the headers but it made no difference.
What am I missing?