Option One:
I had the same problemo, code-wise in the lists/config/config.php make sure that your setting is below. lostndazed from post below offers this solution.
-->Sorry guys who deserve crdit I am still blocked from posing forum URL
//////////////////////////////////////////////
To turn off the eventlog, then I would put:
Code:
define ("NOSTATSCOLLECTION",1);
//////////////////////////////////////////////
**What I did!, its ugly-very ugly! but I dont have the time to parse through the php code to find the snap...I know its a wasted function call, etc...BUT
Thanks to PL Nut who identified the quick location in the lib.php file around line #451. I just commented out the event
function logEvent($msg) {
global $tables;
if (isset($GLOBALS['page'])) {
$p = $GLOBALS['page'];
} elseif (isset($_GET['page'])) {
$p = $_GET['page'];
} elseif (isset($_GET['p'])) {
$p = $_GET['p'];
} else {
$p = 'unknown page';
}
/*
if (Sql_Table_Exists($tables["eventlog"]))
Sql_Query(sprintf('insert into %s (entered,page,entry) values(now(),"%s","%s")',$tables["eventlog"],
$p,addslashes($msg)));
*/
}
Hope this helps someone
Jason