phpcms v9后台删除验证码方法
黑客防线网安网讯:
\phpcms\modules\admin\index.php
//不为口令卡验证
\phpcms\modules\admin\index.php
-
//不为口令卡验证
if (!isset($_GET['card'])) {
$username = isset($_POST['username']) ? trim($_POST['username']) : showmessage(L('nameerror'),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);
}
|
将上面那段代码修改为:
-
//不为口令卡验证
if (!isset($_GET['card'])) {
$username = isset($_POST['username']) ? trim($_POST['username']) ;
showmessage(L('nameerror'),HTTP_REFERER);
if ($_SESSION['code'] != strtolower($code)) {
}
\phpcms\modules\admin\templates\login.tpl.php 模板
删除以下代码:
-
<label><?php echo L('security_code')?>:</label><input name="code" type="text" class="ipt ipt_reg" onfocus="document.getElementById('yzm').style.display='block'" />
<div id="yzm" class="yzm"><?php echo form::checkcode('code_img')?><br /><a href="javascript:document.getElementById('code_img').src='<?php echo SITE_PROTOCOL.SITE_URL.WEB_PATH;?>api.php?op=checkcode&m=admin&c=index&a=checkcode&time='+Math.random();void(0);"><?php echo L('click_change_validate')?></a></div>
ok啦~~
网站维护教程更新时间:2015-10-04 23:05:23 【
打印此页】 【
关闭】