I need to remove cookies (EU cookie law).
I have an old openX server installed and ads are displayed trough JS invocation code. Since we don't need to count ad display per user, I'd like to remove OAID cookie completely.
var m3_u = (location.protocol=='https:'?'https://ads.domain.com/www/delivery/ajs.php':'http://ads.domain.com/www/delivery/ajs.php');
I've tried adding setcookie ("OAID", "", time() - 3600);
to the end of ajs.php but cookies are still set. Could someone give me a pointer where to disable or remove cookies?