I'm making a facebook application with Symfony 2. Many people know that IE loses sessions when including an iframe !
This problem can be solved thanks to header('P3P: CP="CAO PSA OUR"');
So my problem is to send header('P3P: CP="CAO PSA OUR"'); on Symfony 2.
I tried this in my action:
$response = new Response($content);
$response->headers->set('P3P:CP', 'CAO PSA OUR');
return array($response);
Without success, sessions are lost !!!
Have an idea to do this ?