phpcms v9屏蔽后台登陆验证码的方法

前端之家收集整理的这篇文章主要介绍了phpcms v9屏蔽后台登陆验证码的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

打开\PHPcms\modules\admin\index.PHP
找到

$code = isset($_POST['code']) && trim($_POST['code']) ? trim($_POST['code']) : showmessage(L('input_code'),HTTP_REFERER);
if ($_SESSION['code'] != strtolower($code)) {
showmessage(L('code_error'),HTTP_REFERER);
}

改成如下(在前面添加注释符)


//$code = isset($_POST['code']) && trim($_POST['code']) ? trim($_POST['code']) : showmessage(L('input_code'),HTTP_REFERER);
//if ($_SESSION['code'] != strtolower($code)) {
//showmessage(L('code_error'),HTTP_REFERER);
//}

原文链接:/phpcms/534040.html

猜你在找的phpcms相关文章