My (Zend_)Session are lost within IE6/7/8 but not 9 neither do with other browsers (Ff, Chrome).
I'm using Zend Framework 1.10.5.
My index.php begins like this:
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
require_once '../application/bootstrap.php';
Zend_Session::start();
I tried that P3P tips but it still doesn't work.
What's weird is that my session cookie doesn't change
If I browse my website and do >> document.cookie in IE script console, I always get the same PHPSESSID but I I dump $_SESSION I only got the data from the previous page, but it's not kept in the next request.
It is really weird because I don't such behavior in others browser, not even IE9 so I suspect it is a problem with IE itself.
Any ideas?