Graybeard
Well-Known Member
Tip: the newest version PHP 7.3.0 will accommodate the attribute "SameSite"
Setting SameSite in Nginx currently works (but is a more static and structured value)
>>>This new IETF specification describes a new attribute that can be set inside HTTP headers. Called "SameSite," the attribute must be set by the website owner and should describe the situations in which a site's cookies can be loaded.
A SameSite attribute of "strict" will mean the cookie can only be loaded on the "same site." Setting attributes such as "lax" or "none" will allow the cookies to be loaded on other sites as well.
All old cookies that don't have a SameSite header will automatically use a "none" attribute, and Chrome will consider them as cross-site --or tracking-- cookies.<<<
Google Chrome to support same-site cookies, get anti-fingerprinting protection | ZDNet
What does this mean?
On a first referral the tracking can work with your affiliate code in the URL.
Return referral revenues that are allocated by the 30 day (or more) persistent cookie may be history
Certain advertising tracking that is done by cross domain cookie tracking is probably dead.
Are cross-domain image tracking (image pixel) dead next? IDK ...
Setting SameSite in Nginx currently works (but is a more static and structured value)
Code:
add_header Set-Cookie "cip=$remote_addr;Domain=.hoodfo.com;Path=/;HttpOnly; SameSite=strict; Max-Age=100000";
>>>This new IETF specification describes a new attribute that can be set inside HTTP headers. Called "SameSite," the attribute must be set by the website owner and should describe the situations in which a site's cookies can be loaded.
A SameSite attribute of "strict" will mean the cookie can only be loaded on the "same site." Setting attributes such as "lax" or "none" will allow the cookies to be loaded on other sites as well.
All old cookies that don't have a SameSite header will automatically use a "none" attribute, and Chrome will consider them as cross-site --or tracking-- cookies.<<<
Google Chrome to support same-site cookies, get anti-fingerprinting protection | ZDNet
What does this mean?
On a first referral the tracking can work with your affiliate code in the URL.
Return referral revenues that are allocated by the 30 day (or more) persistent cookie may be history
Certain advertising tracking that is done by cross domain cookie tracking is probably dead.
Are cross-domain image tracking (image pixel) dead next? IDK ...