前臺關閉方法:
創新互聯是一家專業提供江寧企業網站建設,專注與成都網站設計、成都網站制作、H5高端網站建設、小程序制作等業務。10年已為江寧眾多企業、政府機構等服務。創新互聯專業網站建設公司優惠進行中。
\phpcms\modules\member\index.php // 查找“//判斷驗證碼”下面4行代碼
$code = isset($_POST['code']) && trim($_POST['code']) ? trim($_POST['code']) : showmessage(L('input_code'), HTTP_REFERER); if ($_SESSION['code'] != strtolower($code)) { $_SESSION['code'] = ''; showmessage(L('code_error'), HTTP_REFERER); }
\phpcms\templates\default\member\login.html //模板頁面代碼:
{form::checkcode('code_img', '5', '14', 120, 26)}
后臺關閉方法(和前臺類似):
\phpcms\modules\admin\index.php // 查找“//不為口令卡驗證”下面4行代碼
$code = isset($_POST['code']) && trim($_POST['code']) ? trim($_POST['code']) :showmessage(L('input_code'), HTTP_REFERER); if ($_SESSION['code'] != strtolower($code)) { $_SESSION['code'] = ''; showmessage(L('code_error'), HTTP_REFERER); }
\phpcms\modules\admin\templates\login.tpl.php //模板頁面代碼:
注:php內容html代碼是注釋不掉的,最好用//注釋掉