Well, I still have a hard time believing this 😉
But you can still work around it, depending on how your script controls the time.
Use session cookies (no time setting in cookie), then set time manually:
<?PHP
$timed = time();
## Set session_id ##
setcookie("seshid", $seshid);
## Set manual timestamp ##
setcookie("runtime", $timed);
?>
<?PHP
$time_limit = time() - 1500;
## Check wether time is past timelimit ##
if($runtime < $time_limit) {
## Unset session (or you may start a new) ##
setcookie("seshid", "");
header("Location:another_page.php");
}
?>
knutm