3rd-party cookies (MSIE only) 
 
Running BlaB! Lite in an iframe from another domain

All credits go to Roi Conde

With the default MSIE settings you cannot run BlaB! Lite in a frame/iframe if the domain name in the address bar of the browser is different from the one of the frame/iframe which is because MSIE does not accept 3rd-party cookies. There is a quick fix for this which seems to work sometimes. Put in incl/main.php (where headers are sent) the line in red:

if(!headers_sent()){

header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR
IND CNT"');


header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Content-type: text/html; charset=UTF-8");}


(More about the weird header above)


 

2010-04-18 19:52