Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [Peter544] "Who is online" not counting correctly

Quote Reply
Re: [Peter544] "Who is online" not counting correctly In reply to
Ah - this is probably because internally a guest cleanup happens every 24 hours, which deletes everything up to the last hour.

The code in question is at about line 548 of GForum:

Code:
$Guest->delete(GT::SQL::Condition->new(guest_last_time => '<' => (CORE::time - 60 * 60)));

Change that '60 * 60' part to '48 * 60 * 60' and your problems should go away.

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Subject Author Views Date
Thread "Who is online" not counting correctly Peter544 2817 Jan 31, 2003, 2:42 PM
Thread Re: [Peter544] "Who is online" not counting correctly
Jagerman 2732 Jan 31, 2003, 7:44 PM
Post Re: [Jagerman] "Who is online" not counting correctly
Peter544 2734 Jan 31, 2003, 8:01 PM
Post Re: [Jagerman] "Who is online" not counting correctly
Peter544 2722 Jan 31, 2003, 8:06 PM