还有一种修改方式,就是修改上限,同样在/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]))
}