2013-08-20 5 views
3

나는 framing 사이트 : pishonworld.com을 디자인했습니다.이 사이트는 wholesalecentral.com/pishonworld/store.cfm을 구성합니다.제 3 자 쿠키는 iframe이있는 IE에서는 P3P와 함께 작성되지 않았습니다

고객이 IE를 사용하여 내 사이트를 쇼핑하면 장바구니를 떠나 자마자 장바구니가 비워집니다. P3P에 관해서는 정말 좋은 점이 많아서 index.php에 P3P를 추가했지만 장바구니는 여전히 IE에서 삭제되었습니다.

이 P3P가 프레이밍 페이지로 이동해야합니까? 또는 프레임 된 페이지?

내가 뭘 잘못하고 있니? 이 문제를 어떻게 해결할 수 있습니까?

도움을 주셔서 감사합니다.

다음은 내 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> 
+1

P3P 헤더는 프레임에로드 될 페이지로 이동해야합니다. 당신이 잘못하고있는 것처럼 보입니다. –

답변

관련 문제