I have a Facebook iFrame application (written in PHP) and when I run it in IE8, my session data is not persisted.
I'm using Symfony 1.4 and have tried both Symfony's session wrapper and $_SESSION.
I set up two test pages: the first one defines $_SESSION['foo'] = 'bar' and calls print_r($_SESSION). The second page also calls print_r($_SESSION). I see my session variables set on the first page, but not on the second.
Everything works fine in Firefox and Chrome, and I've had two other people test this on different PCs running IE8 and they have the same problem.
I tried removing any Facebook javascript from my page thinking that it might somehow be interfering, but that didn't solve anything.
Any help would be greatly appreciated, thanks!