thinkcmf 5关闭后台验证码
Posted 星耀学园
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkcmf 5关闭后台验证码相关的知识,希望对你有一定的参考价值。
控制器修改
D:\\cmf\\thinkcmf\\app\\admin\\controller\\PublicController.php
注释
/* $captcha = $this->request->param(\'captcha\');
if (empty($captcha)) {
$this->error(lang(\'CAPTCHA_REQUIRED\'));
}*/
//验证码
/* if (!cmf_captcha_check($captcha)) {
$this->error(lang(\'CAPTCHA_NOT_RIGHT\'));
}*/
模板文件
D:\\cmf\\thinkcmf\\public\\themes\\admin_simpleboot3\\admin\\login.html
注释
<!-- <div class="form-group">
<div style="position: relative;">
<input type="text" name="captcha" placeholder="验证码" class="form-control captcha">
<captcha height="32" width="150" font-size="18"
style="cursor: pointer;position:absolute;right:1px;top:1px;"/>
</div>
</div>-->
以上是关于thinkcmf 5关闭后台验证码的主要内容,如果未能解决你的问题,请参考以下文章