修改文件:phpcms/modules/content/content.php文件,在第859行$hitsid = ‘c-‘.$modelid.’-‘.$id;下加入如下代码:
//采集没有插入hits表检查
$hits_result = $this->hits_db->select(“`hitsid` LIKE ‘%$hitsid%'”);
if (empty($hits_result)) {
$hits_sql = “INSERT INTO `ge_hits` (`hitsid`, `catid`, `views`, `yesterdayviews`, `dayviews`, `weekviews`, `monthviews`, `updatetime`) VALUES (‘”.$hitsid.”‘, “.$tocatid.”, 0, 0, 0, 0, 0, ‘”.time().”‘);”;
$this->hits_db->query($hits_sql);
}