watson,
You added the Ms_Analysis module. to do so, You had to edit your footer.php file and add this bit of code
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" );
}
did you do that. If so, then you may have mis-pasted the code or corrupted the footer.php by editing it in a non-textbased program.
A parse error is usually an indication that you are missing a closing } in the script.
mikem