phpcms v9 關閉前臺和後臺登錄驗證碼方法

phpcms v9 關閉前臺和後臺登錄驗證碼方法
php

前臺關閉驗證碼html

刪除下面的代碼
spa

\phpcms\modules\member\index.php  查找「//判斷驗證碼」下面4行代碼:
code

//判斷驗證碼
 $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\templates\default\member\login.html 模板頁面代碼:orm

   <div class="input">    
     <label>{L('checkcode')}:</label><input type="text" id="code"name="code" size="8" class="input-text">{form::checkcode('code_img', '4', '14', 84, 24)}    
   </div>

後臺驗證碼關閉方法相似,路徑和文件名不同htm

\phpcms\modules\admin\index.phpinput

登錄模板,這點後綴名是php,實際是html模板文件it

\phpcms\modules\admin\templates\login.tpl.phpform

相關文章
相關標籤/搜索