♦
月费会员45元
♦
年费会员88元
♦
终身会员298元(送展示平台)
PbootCMS后台关闭验证码,登录提示验证码不能空的解决方法
apps/admin/controller/IndexController.php 大概在126行
if (!$checkcode) { json(0, '验证码不能为空!'); }
改成
if (!$checkcode && $this->config('admin_check_code')) { json(0, '验证码不能为空!'); }