Carter
|
| Posted: 12/16/2002, 8:27 AM |
|
How do I extend the session timeout? I hate when I am updating a record and I lose the seesion.
|
|
|
 |
RonB
|
| Posted: 12/17/2002, 6:21 AM |
|
With php you can alter the value in the php.ini file
RonB
|
|
|
 |
catfish
|
| Posted: 01/05/2003, 7:20 PM |
|
does anyone know how to do this in jsps? I can't seem to find it . I need to extend the session timeout to be a very long time, not the usual 20 mins
|
|
|
 |
bg
|
| Posted: 01/24/2003, 2:22 AM |
|
Look in Common Files; for example in PHP, common.php has this function:
//CCSetCookie @0-1E0B074A
function CCSetCookie($parameter_name, $param_value)
{
setcookie ($parameter_name, $param_value, time() + 3600 * 24 * 366);
}
//End CCSetCookie
You can see the timeout here. Just modify it, or create your own function to do the job.
|
|
|
 |
|