DedeCMS 去掉会员登录及注册验证码

现在5.5版程序经常出现验证码不正确的情况,今天改了一下,暂时去掉验证码功能。 

 

以下为修改的文件,请备份你的原文件再修改哦。 

 

1、登录 

 

打开member/index_do.php 

 

删除245-250行,即: 

if(strtolower($vdcode)!=$svali || $svali=='') 

ResetVdValue(); 

ShowMsg("验证码错误!","-1"); 

exit(); 

 

打开member\templets\login.htm和member\templets\index-notlogin.htm 

 

删除34-36行,即: 

<li><span>验证码:</span> 

<input name="vdcode" type="text" id="vdcode" style='width:50px;text-transform:uppercase;' class="text" /> 

<img id="vdimgck" src=http://www.dede58.com/"../include/vdimgck.php" alt="看不清?点击更换" align="absmiddle" style="cursor:pointer" onclick="this.src=this.src+'?'" /> 看不清?<a onclick="changeAuthCode();" href="#">点击更换</a></li> 

 

2、注册 

 

打开member/reg_new.php 

 

删除20-25行,即: 

if(strtolower($vdcode)!=$svali || $svali=='') 

ResetVdValue(); 

ShowMsg('验证码错误!', '-1'); 

exit(); 

 

打开member\templets\reg-new.htm 

 

删除71-73行,即: 

<li><span>验证码:</span> 

<input name="vdcode" type="text" id="vdcode" style='width:50px;text-transform:uppercase;' class="text" /> 

<img src=http://www.dede58.com/"../include/vdimgck.php" alt="看不清?点击更换" name="vdimgck" align="absmiddle" id="vdimgck" style="cursor:pointer"/> 看不清?<a href="#vdcode">点击更换</a></li>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/1d41b9e703ce623f9b9d1e8367fedc84.html