How to install a P3P?

catman08

Junior Member
Joined
Jan 11, 2008
Messages
170
Reaction score
110
Hi guys ... i got a question ... how can i install a P3P policy for my affiliate program on my website.

any ideas ... or any good guide ... application that builds that thing?

P3P = Compact Privacy Policy of Micrososft IE

Thanks in advance. :-)
catman
 
P3P is a standard, not only IE uses it...

It's something you add to your web server's configuration as it's sent out in the response headers before your content.
Code:
http://webmaster.info.aol.com/p3psetup.html
provides examples for many web servers.
 
also, if you dont want to use apache, you can use a simple php snippet at the too of your page.. something like:

Code:
<?php header("p3p: CP=\"ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM NAV\"");?>
 
also, if you dont want to use apache, you can use a simple php snippet at the too of your page.. something like:

Code:
<?php header("p3p: CP=\"ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM NAV\"");?>

Thanks for the reply dudes :-)
I always like it easy - is this php code usable ... i mean can i just copy and paste it and it works and the requirements for the p3p at my side are fulfilled?

Cheers
catman
 
Thanks for the reply dudes :-)
I always like it easy - is this php code usable ... i mean can i just copy and paste it and it works and the requirements for the p3p at my side are fulfilled?

Cheers
catman

should work just fine. make sure your files are named .php of course
 
Back
Top