Hey Boofo
I think ive figured it out, had a good night sleep so my brain is awake again.. hah..
=====
Add stats to any page and header
OPEN: includes/init.php
FIND:
PHP Code:
// add default special templates
$specialtemplates = array_merge(array(
'options',
'cron',
'forumcache',
'usergroupcache',
'stylecache'
), $specialtemplates);
REPLACE
PHP Code:
// add default special templates
$specialtemplates = array_merge(array(
'options',
'cron',
'forumcache',
'usergroupcache',
'stylecache',
'statscache'
), $specialtemplates);
Edit Template PHPINCLUDE
ADD:
PHP Code:
$statscache = unserialize($datastore['statscache']);
================
It seems to be working, this will only update on forumhome but you can use the $statscache vars on any template with no extra queries.
(will work out a good way to make it update every 10mins no matter what page later on)