Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an canvas app in an IFRAME, I have been trying to figure out for some time why it doesn't work in IE. Finally I found a program called IEWatch which is a bit like firebug for explorer. Using this I have deduced that the sessionID for my app does not match on the index and the backend script. At the top of the index.php I have session_start() as I do on my backend script that I pass data to using ajax. If I reload the page the sessionID then match's (index.php changes to match the backend.php sessionID. This does not happen in chrome.

What could be causing this?

share|improve this question

1 Answer

up vote 1 down vote accepted

You need for IE to accept cross-browser cookies is a P3P policy header.

//required for IE in iframe FB environments if sessions are to work.
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');

Put this on top of index.php file

share|improve this answer
Top of the class! Some user have said they have had problems in Firefox also. Could this be the same problem? – maxum Jun 1 '12 at 14:31
shouldn't be, as firefox will allow third party sites to set cookies. – Venu Jun 1 '12 at 14:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.