Stop Admin hits from counting
Use this tutorial to stop members that log in as admin to stop counting which will give a more accurate count as how many hits are made to your website..
Steps :
Open header.php in your nuke root directory. That is the same folder where config.php and mainfile.php Search for . include("includes/counter.php"); and replace it with the following.
global $admin;
if(!is_admin($admin)){include("includes/counter.php");}
Save and close.
That's all! Vist our forums for more help.
|