after a day of running it for a day, this is what im finding
Statistics home - works
Browsers / Operating Systems -
not working
Country of origin and browser language - works
Search Engines - not sure yet ( i have one altavista hit in referrers but not here)
Spider / Crawler -
not sure yet
Referrer - works
Browser Plugins and Monitor Resolutions - works
System check - works
------------------------------------------------------------------------
I also thought of way to not include yourself in the stats. Since your always on your site, it may be a good idea to not skew the stats with all your visits.
Heres how:
In headinclude wrap the script in a conditional....like:
Code:
<if condition="!$show['admincplink']"><div style="display:none"><script type="text/javascript" src="./clientscript/statistic_java.js"></script></div></if>
You can change the conditional to usergroup 6 if you like or just your userid.
I just used admincplink since I believe it performs the exact same function as usergroupid == 6 and I'm the only admin
In phpinclude_start, change it to this:
Code:
if ($bbuserinfo['usergroupid'] != 6) {include("./statistic_counter.php");}
again, change the conditional as you see fit