Re: [PHP] Auto session timeout

2003-07-21 Thread Hardik Doshi
Hi John, Thanks for your response. Actually i am thinking on the same way except saving the URL of the page. You gave me a really good tip of storing the URL with all other information. Additionally, i was thinking to implement the Save feature of MS word. So user can keep saving his/her work

Re: [PHP] Auto session timeout

2003-07-21 Thread John W. Holmes
Hardik Doshi wrote: There is still one problem. On so many forms on my education intranet application, students are submitting the final projects with the supporting documents and images. Once they submit the final project, my script is performing serveral error checking for the file size,

Re: [PHP] Auto session timeout

2003-07-20 Thread John W. Holmes
Tan Ai Leen wrote: Hi, Can someone confirm that php does not have a auto timeout feature? Meaning something like session will auto expire irregardless of whether the browser is close or not? If you're using the default session handler and storing the session files in the location specified in

Re: [PHP] Auto session timeout

2003-07-20 Thread Curt Zirzow
* Thus wrote Tan Ai Leen ([EMAIL PROTECTED]): Hi, Can someone confirm that php does not have a auto timeout feature? Meaning something like session will auto expire irregardless of whether the browser is close or not? two php ini variables that effect this: ; Lifetime in seconds of cookie

Re: [PHP] Auto session timeout

2003-07-20 Thread Hardik Doshi
Hi, I have implemented the Auto session timeout after the specific period of time. What i am doing is..At the time of login to the system, my script is storing the current unix time into the session and later on at every user click, It (my script) is checking the stored unix time with the

Re: [PHP] Auto session timeout

2003-07-20 Thread John W. Holmes
Hardik Doshi wrote: Hi, I have implemented the Auto session timeout after the specific period of time. What i am doing is..At the time of login to the system, my script is storing the current unix time into the session and later on at every user click, It (my script) is checking the stored