Forum Moderators: phranque
So I put this in the virtual server in the conf file:
<IfModule mod_usertrack.c>
CookieTracking on
CookieExpires "3 months"
CookieStyle RFC2109
CookieName fmav
</IfModule>
And it all works perfectly except that each user gets a session cookie, not a 'proper' cookie that will be picked up next visit.
Any ideas? What have I not understood? TIA
<IfModule mod_headers.c>
Header append P3P: 'CP="ALL DSP COR CURa ADMa DEVa TAIa PSAa PSDa OUR IND UNI CO
M NAV INT", policyref="/w3c/p3p.xml"'
</IfModule>
to an .htaccess or your virtual server config. NB the policyref= has to be at /w3c/p3p.xml. The CP= bit comes from the compact policy that you can save as a text file.
Once you have made a policy that is compliant, you need to check whether it is compliant with what ie6 needs to allow cookies. A good tool is privacy bird (www.privacybird.com). You tell it your settings (which should be medium). It twitters if all is ok and complains if not.
Whew.