Originally posted by dejanb
In which units? Did you pay attention on time zones?
Check differences between your and server clock.
Regards,
Dejan
I don't understand.
This is for DCForum at www.dcscripts.com and the owner does not know what is wrong.
but here is the variable I changed:
// Define cookie duration - make it very long
// This value is in days - default is 2 years
define("COOKIE_DURATION",1200);
and here is a generic function used to set the cookie:
function my_setcookie($name,$value,$expires = "") {
if ($expires) {
setcookie($name,$value,$expires);
}
else {
setcookie($name,$value);
}
}