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

发布时间:2021-01-04编辑:脚本学堂
如何屏蔽phpcms V9后台的登录验证码呢?以使登录更方便快捷呢?本文为大家介绍一种方法,有需要的朋友,可以看看。

修改文件 phpcmsmodulesadminindex.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);
//
}