亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

phpcms v9屏蔽后臺登陸驗(yàn)證碼的方法

  發(fā)布時(shí)間:2014-04-25 16:20:53   作者:佚名   我要評論
這篇文章主要介紹了phpcms v9屏蔽后臺登陸驗(yàn)證碼的方法,需要的朋友可以參考下

打開\phpcms\modules\admin\index.php
找到

復(fù)制代碼
代碼如下:

$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);
}

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


復(fù)制代碼
代碼如下:

//$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);
//}

相關(guān)文章

最新評論