I designed the framing site: pishonworld.com, which frames wholesalecentral.com/pishonworld/store.cfm.
When customers use IE to shop on my site, their shopping cart gets cleared out as soon as they leave the cart. I have some really good things about P3P, so I added P3P to my index.php, but cart is still cleared out on IE.
Does this P3P need to go to the framing page? or the framed page?
What am I doing wrong? How can I fix this to work?
Thank you in advance for your help!
The following is my index.php.
<?php
header('p3p: CP="NOI ADM DEV PSAi COM NAV OUR OTR STP IND DEM"');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Pishon World</title>
<link rel="stylesheet" href="style/style.css" type="text/css" media="screen" />
</head>
<body>
<div align="center" id="mailWrapper">
<div id="pageContent">
<?php include_once("template_header.php");?>
<table width="1100" border="0">
<tr style="text-align: center">
<td><iframe align="middle" name="iframe" id="iframe" frameborder="0" scrolling="auto" width="1100" height="650" src="welcome.php" seamless="seamless">Your browser is too old and it does not support pishonworld.com.
<br />
Please visit us at http://www.wholesalecentral.com/pishonworld/store.cfm to place your order.</iframe></td>
</tr>
</table>
</div>
<?php include_once("template_footer.php");?>
</div>
</body>
</html>
Try
See http://www.marco.org/2007/04/27/p3p-sucks-how-to-get-frame-cookies-unblocked-in-ie6 I have used
in the past and it works!
Also I would add this header to all your pages that are part of this process.