PbootCMS后台关闭验证码,登录提示验证码不能空的解决方法
apps/admin/controller/IndexController.php 大概在126行
if (!$checkcode) {
json(0, '验证码不能为空!');
}
改成
if (!$checkcode && $this->config('admin_check_code')) {
json(0, '验证码不能为空!');
}
apps/admin/controller/IndexController.php 大概在126行
if (!$checkcode) {
json(0, '验证码不能为空!');
}
改成
if (!$checkcode && $this->config('admin_check_code')) {
json(0, '验证码不能为空!');
}