Tracking Amount of Guests ~ Help!

Status
Not open for further replies.

timboy18

Active Member
337
2009
15
10
I need help tracking the amount of unique guests that visited my site in the last 24 hours. How do I change the amount variable from 15 minutes to 24 hours ?

My forums is IPB 3.1.x

Thanks in Advances fellow WJunction Members!
 
8 comments
You change the php code and language files.
Language file forums_public_boards.php from minutes to hours.
change:
'active_users' => "(in the past %s minutes)",
to:
'active_users' => "(in the past %s hours)",

edit file admin\applications\forums\modules_public\forums\boards.php

change:
$this->lang->words['active_users'] = sprintf( $this->lang->words['active_users'], $this->settings['au_cutoff'] );
to:
$this->lang->words['active_users'] = sprintf( $this->lang->words['active_users'], $this->settings['au_cutoff']/60 );
 
Status
Not open for further replies.
Back
Top