simon
|
| Posted: 03/01/2002, 6:48 AM |
|
Does anyone know how to extend the session timeout variable to a really long time?
I don't want the application kicking the user out so early after being idle.
Thanks,
Simon
|
|
|
 |
FredY
|
| Posted: 03/01/2002, 7:51 AM |
|
Usually set on your web server. For IIS it is set through the management console. ASP has also a script timeout. It can be set at the console but also on each individual page. Neither overide the inactivity timeouts imposed by ISP's or "Power saver" features of a client connection. If there is a timout err given it should say 'session' or 'script' is timing out. If you're not IIS/asp...someone else will pick this up I'm sure.
|
|
|
 |
Amelie Poulain
|
| Posted: 03/01/2002, 8:02 AM |
|
What is your web platform ?
|
|
|
 |
simon
|
| Posted: 03/04/2002, 4:45 AM |
|
I'm using a Windows 2000 server with IIS5.
I have permissions to all server areas so if this is a server setting, no probs there.
I'm going to check the server settings as mentioned but any other ideas would really help.
Thanks...
|
|
|
 |
Nicole
|
| Posted: 03/05/2002, 1:10 AM |
|
Simon,
if you use ASP try following code in Page Open event:
session.TimeOut = 1000
|
|
|
 |
pol
|
| Posted: 03/05/2002, 6:35 PM |
|
If you use ASP:
You can use Session.Timeout = xx where xx represents the idle time in minutes
example:
Session.Timeout = 30
|
|
|
 |
Vince
|
| Posted: 11/20/2002, 2:44 AM |
|
what would be the equivalent for PHP (if you use ASP try following code in Page Open event:
session.TimeOut = 1000 )
Thanks!
|
|
|
 |