i noticed that this hack will count only users that registered in the past 24hours, but i wanted to show the users registered when the new day starts, so from 0:00 (midnight)
it's simple to do that, just copy&paste a bit of code from the index.php of the admincp
here the instructions:
open up your ./modules/stats.php and find:
Code:
$DB_site->free_result($getforumstats);
unset($forum)
below past this:
Code:
$starttime = mktime(0, 0, 0, date('m'), date('d'), date('Y'));
find
Code:
$newusers = $DB_site->query_first('
SELECT COUNT(*) AS count
FROM ' . TABLE_PREFIX . 'user
WHERE joindate >= "' . strtotime("-1day") . '"
');
$newmembers = number_format($newusers['count']);
change it with this:
Code:
$newusers = $DB_site->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "user WHERE joindate >= $starttime");
$newmembers = number_format($newusers['count']);
in the adv_portal_stats template change:
Code:
$vbphrase[reged_today]: ($newusers[count])<br />
with:
Code:
$vbphrase[reged_today]: $newusers[count] <if condition="$newusers[count]==1"> user<else /> users</if> <br />
this is my first attempt to do a vb hack, i hope you liked it
ps: sorry for my english :P