程序员人生 网站导航

PHPCMS广告导致广告统计表文件过大的解决方案

栏目:DedeCMS时间:2013-11-24 18:21:50

PHPCMS广告导致广告统计表文件过大的解决方案

adsincludeads_place.class.php
function show($placeid) 块

注释掉 $this->db->query("INSERT INTO ".DB_PRE."ads_stat (`adsid`, `username`, `ip`, `referer`, `clicktime`, `type`) VALUES ('$ads[adsid]', '$_username', '$ip', '$this->referer', '$time', '0')");


$this->db->query("INSERT INTO ".DB_PRE."ads_stat (`adsid`, `username`, `ip`, `referer`, `clicktime`, `type`) VALUES ('$ads[adsid]', '$_username', '$ip', '$this->referer', '$time', '0')");

这样就会只统计点击的 表也不会大了
我采用的就是这个方法,值得推广 :hehe
官方可以考虑新版本中后台加上“是否统计展示”

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐