MS Analysis could be the problem if you did not add the code correctly to the footer.php in the main nuke directory.
Code:
function footmsg() {
global $foot1, $foot2, $foot3, $copyright, $totaltime, $starttime;
$mtime = microtime();
$mtime = explode(" ",$mtime);
$mtime = $mtime[1] + $mtime[0];
$endtime = $mtime;
$totaltime = ($endtime - $starttime);
$totaltime = ""._PAGEGENERATION." ".substr($totaltime,0,5)." "._SECONDS."";
echo "<font class=\"footmsg\">\n";
if ($foot1 != "") {
echo "$foot1
\n";
}
if ($foot2 != "") {
echo "$foot2
\n";
}
if ($foot3 != "") {
echo "$foot3
\n";
}
// DO NOT REMOVE THE FOLLOWING COPYRIGHT LINE. YOU'RE NOT ALLOWED TO REMOVE NOR EDIT THIS.
echo "$copyright
$totaltime
\n</font>\n";
// FOR MS-ANALYSIS ADD FOLLOWING LINE
require( "modules/MS_Analysis/mstrack.php" );
}
Make sure your's looks like this. (assuming I did it correctly) lol!