Re: [PHP] user login idle timeout feature

2003-06-03 Thread Justin French
on 02/06/03 8:06 PM, electroteque ([EMAIL PROTECTED]) wrote: > thats what i was thinking of logic but i may be having about 10 users logged > in doing full text searching on a 200 meg + database will that affect it ? the issue shouldn't be your full text searching... the issue should be your sess

RE: [PHP] user login idle timeout feature

2003-06-02 Thread electroteque
PROTECTED] Subject: Re: [PHP] user login idle timeout feature off the top of my head... have a column in your user table called "last_active"... it should hold a date-time, or a unix timestamp, or something like that. on each page request by a logged in user, you would update that value wi

Re: [PHP] user login idle timeout feature

2003-06-02 Thread Justin French
off the top of my head... have a column in your user table called "last_active"... it should hold a date-time, or a unix timestamp, or something like that. on each page request by a logged in user, you would update that value with a newer stamp on physical logout, you would set that to zero or n

[PHP] user login idle timeout feature

2003-06-02 Thread daniel
ok so i worked out the connection_status and connection_abort will only work if the script is actually running and a request to the server , so i wont be able to tell if someone had closed the browser or not , what i'd like to know is , how can i tell if a user has not accessed the script for a cer