I have an internal web based system that is meant to show different results based on the computer it is viewed from. I am using cookies to achieve this.
Code: Select all
setcookie('cookieName', $cookieValue, time()+60*60*24*365*10, '/', '.websiteDomainName'); On most of the computers it's working great. But on couple of machines (on both XP and Vista) for some reason the cookies sometimes (not always) are not read by the website. One of the user also mentioned that after restarting the computer couple of times fixed the problem.
Has anyone experienced issues with cookies getting ignored by website?