View Single Post
Old
  (#30 (permalink))
Martin
Senior Member
 
Status: Offline
Posts: 619
Join Date: Oct 2002
Location: Alabama, USA
03-15-2003, 08:59 AM

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!
   
Reply With Quote