一种方法:
找到request_site_today = request_site_today + 1,request_site_today 就是每次增加的命中数量,可以直接改为0,
request_site_today = 0,
在这句话下面加的是如下代码:
if request_site_today > 10000 then
request_site_today = 0
end
第二种方法:
同样在/www/server/speed/speed.lua里的is_level_tip方法,
if conf.settings['level'] == 3 then
if today_hit > 0xc3500 then return true end
else
if today_hit > 0xc350 then return true end
end
直接注释掉上面的代码,然后编辑/www/server/panel/plugin/site_speed/index.html
if (rdata['max'] > 0) {
limit = ((item.total[3] >= rdata['max']) ? '<a class="btlink" style="color:red;" onclick="bt.soft.updata_ltd()">已用完<span style="color:#20a53a">[升级]</span></a>' : (rdata['max'] - item.total[3]))
}