So I have a line in php that sets a cookie and it has been working for a while now, but, this week chrome does not want to keep the cookie. The cookie gets added and when I hit refresh in the chrome dev tools it disappears.
Chrome for both Windows and OS X are doing the same thing. Chrome started doing this out of the blue. Firefox on Windows and OS X and safari on OS X do not have the issue.
I am using a date far enough in advance that its not an expiry issue.
Does anyone have any experience with this?
Currently running:
setcookie('key', $value, time()+3600, '/');
Was running:
setcookie('key', $value, 2000000000, '/');