程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> dedecms後台驗證碼總提示錯誤的解決方法

dedecms後台驗證碼總提示錯誤的解決方法

編輯:PHP綜合
直接用下面的代碼,覆蓋dede中的login.php即可
復制代碼 代碼如下:
<?
require_once(dirname(__FILE__)."/../include/config_base.php");
require_once(dirname(__FILE__)."/../include/inc_userlogin.php");
if(empty($dopost)) $dopost="";
//--------------------------------
//登錄檢測
//--------------------------------
if($dopost=="login")
{
  if(empty($validate)) $validate=="";
  else $validate = strtolower($validate);

  if( empty($_SESSION["s_validate"]) ) $svali = "";
  else $svali = $_SESSION["s_validate"];

   $cuserLogin = new userLogin();
     if(!empty($userid)&&!empty($pwd))
     {
              $res = $cuserLogin->checkUser($userid,$pwd);
              //成功登錄
              if($res==1){
                       $cuserLogin->keepUser();
                       if(!empty($gotopage)){
                               //header("location:$gotopage");
                               ShowMsg("成功登錄,正在轉向管理管理主頁!",$gotopage);
                               exit();
                       }
                       else{
                               ShowMsg("成功登錄,正在轉向管理管理主頁!","index.php");
                               //header("location:index.php");
                               exit();
                       }
              }
              else if($res==-1){
                      ShowMsg("你的用戶名不存在!","");
              }
              else{
                      ShowMsg("你的密碼錯誤!","");
              }
     }//<-密碼不為空
     else{
            ShowMsg("用戶和密碼沒填寫完整!","");
     }

//<-驗證用戶
}

?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>管理系統</title>
<link href="base.css" rel="stylesheet" type="text/css">
</head>
<body style='MARGIN: 0px' bgColor='#ffffff' leftMargin='0' topMargin='0' scroll='no'>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#111111" style="BORDER-COLLAPSE: collapse">
  <tr> 
    <td width="100%" height="64" background="img/indextitlebg.gif"><img src="img/indextitle.gif" width="250" height="64"> 
    </td>
  </tr>
  <tr> 
    <td width="100%" height="20"> </td>
  </tr>
  <tr> 
    <td width="100%" height="20" valign="bottom">
        <table width="540" border="0" cellspacing="0" cellpadding="0">
        <tr> 
          <td align="right" style="FONT-SIZE: 2pt"> </td>
        </tr>
        <tr> 
          <td><IMG height=14 src="img/book1.gif" width=20>  用戶登錄</td>
        </tr>
      </table></td>
  </tr>
  <tr> 
    <td width="100%" height="1" background="img/sp_bg.gif"></td>
  </tr>
  <tr> 
    <td width="100%" height="2"></td>
  </tr>
  <tr> 
    <td width="100%" height="136" valign="top">
        <form name="form1" method="post" action="login.php">
        <input type="hidden" name="gotopage" value="<?if(!empty($gotopage)) echo $gotopage;?>">
        <input type="hidden" name="dopost" value="login">
        <table width="540" border="0" cellspacing="0" cellpadding="0">
          <tr> 
            <td colspan="2" height="4"></td>
          </tr>
          <tr> 
            <td width="156" height="30" align="center"> 用戶名:</td>
            <td width="384"> <input type="text" name="userid" style="width:150;height:20"> 
            </td>
          </tr>
          <tr> 
            <td height="30" align="center"> 密 碼: </td>
            <td> <input type="password" name="pwd" style="width:150;height:20"> 
            </td>
          </tr>

          <tr> 
            <td height="50" colspan="2" align="center"> <input type="button" name="sm1" value="登錄" style="background-color:#BAE171;border:1px solid #666666" onClick="this.form.submit();"> 
                <input type="button" name="sm2" value="Power by DedeCms" onClick="window.open('http://www.jb51.net');" style="background-color:#FFFFFF;border:1px solid #DDDDDD;color:#DDDDDD"> 
                </td>
          </tr>
        </table>
      </form></td>
  </tr>
  <tr> 
    <td width="100%" height="2" valign="top"></td>
  </tr>
</table>
</body>
</html>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved