try to search on awstats on googleiceman wrote:I'm not aware of awstats - can you link me please?
Is it a better solution?

try to search on awstats on googleiceman wrote:I'm not aware of awstats - can you link me please?
Is it a better solution?
Code: Select all
Fatal error: Undefined class name 'phpopentracker_config' in /mysite/include/inc_ext/phpOpenTracker/tmpl/phpot.today.tmpl.php on line 48
- phpWcms version?dasphatman wrote:I get this error when trying to view VTS in the admin error...
Any idea!!!?Code: Select all
Fatal error: Undefined class name 'phpopentracker_config' in /mysite/include/inc_ext/phpOpenTracker/tmpl/phpot.today.tmpl.php on line 48
Please help!
Code: Select all
Notice: Undefined variable: i in /var/www/vhosts/qs-letten.ch/httpdocs/schule/cms/include/inc_ext/phpOpenTracker/phpOpenTracker.php on line 218
Notice: Undefined variable: i in /var/www/vhosts/qs-letten.ch/httpdocs/schule/cms/include/inc_ext/phpOpenTracker/phpOpenTracker.php on line 219
Notice: Undefined offset: 0 in /var/www/vhosts/qs-letten.ch/httpdocs/schule/cms/include/inc_ext/phpOpenTracker/phpOpenTracker.php on line 223
Code: Select all
function cleanup_tmp($dir) {
$files = array();
chdir($dir);
$dir = opendir($dir);
// while(false !== ($file = readdir($dir))) {
// $files[$i] = $file;
// $i++;
// }
for ($i = 0; $i < count($files); $i++) {
$buffer = explode("-", $files[$i]);
if ($buffer[0] == "tmp" && $buffer[1] < (date("U") - 300)) {
unlink($files[$i]);
}
}
closedir($dir);
}
Code: Select all
// replace all external URLs with exit.php?url=exit_url
//preg_match_all("#<a href=(\"|')http://([^\"']+)(\"|')#i",$content["all"],$content_treffer,PREG_SET_ORDER);
//$cnt_anz = count($content_treffer);
//for ($i = 0; $i < $cnt_anz; $i++) {
//$content["all"] = str_replace($content_treffer[$i][0],"<a href=\"exit.php?url=".urlencode($content_treffer[$i][2])."\"",$content["all"]);
//}