Page 1 of 1

who is online

PostPosted: Sun Nov 19, 2006 2:22 am
Author: MadUser
Hello.
if a user doesnt do nothing on my web site, after 5 minutes he goes offline.
(in the online block) but i want to change the interval to 30 minutes or even more.
how do i do it?
thanks

Re: who is online

PostPosted: Sun Nov 19, 2006 1:06 pm
Author: Drop-Forged
Open, blocks/blocks_imp_online_users

Find:

Code: Select all
AND s.session_time >= ".( time() - 300 ) . "


Replace with]AND s.session_time >= ".( time() - 1800 ) . "[/code]



The time is in seconds, so you can change it to what you want.

PostPosted: Mon Nov 20, 2006 3:50 am
Author: MadUser
Thanks man.
I tought I missed somthing on the ACP...