dedecms后台验证码总提示错误的解决方法_php教程-查字典教程网
dedecms后台验证码总提示错误的解决方法
dedecms后台验证码总提示错误的解决方法
发布时间:2016-12-29 来源:查字典编辑
摘要:直接用下面的代码,覆盖dede中的login.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=newuserLogin();

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();

}

}

elseif($res==-1){

ShowMsg("你的用户名不存在!","");

}

else{

ShowMsg("你的密码错误!","");

}

}//<-密码不为空

else{

ShowMsg("用户和密码没填写完整!","");

}

//<-验证用户

}

?>

<html>

<head>

<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">

<title>管理系统</title>

<linkhref="base.css"rel="stylesheet"type="text/css">

</head>

<bodybgColor='#ffffff'leftMargin='0'topMargin='0'scroll='no'>

<tablewidth="98%"border="0"align="center"cellpadding="0"cellspacing="0"bordercolor="#111111">

<tr>

<tdwidth="100%"height="64"background="img/indextitlebg.gif"><imgsrc="img/indextitle.gif"width="250"height="64">

</td>

</tr>

<tr>

<tdwidth="100%"height="20"></td>

</tr>

<tr>

<tdwidth="100%"height="20"valign="bottom">

<tablewidth="540"border="0"cellspacing="0"cellpadding="0">

<tr>

<tdalign="right"></td>

</tr>

<tr>

<td><IMGheight=14src="img/book1.gif"width=20>用户登录</td>

</tr>

</table></td>

</tr>

<tr>

<tdwidth="100%"height="1"background="img/sp_bg.gif"></td>

</tr>

<tr>

<tdwidth="100%"height="2"></td>

</tr>

<tr>

<tdwidth="100%"height="136"valign="top">

<formname="form1"method="post"action="login.php">

<inputtype="hidden"name="gotopage"value="<?if(!empty($gotopage))echo$gotopage;?>">

<inputtype="hidden"name="dopost"value="login">

<tablewidth="540"border="0"cellspacing="0"cellpadding="0">

<tr>

<tdcolspan="2"height="4"></td>

</tr>

<tr>

<tdwidth="156"height="30"align="center">用户名:</td>

<tdwidth="384"><inputtype="text"name="userid">

</td>

</tr>

<tr>

<tdheight="30"align="center">密码:</td>

<td><inputtype="password"name="pwd">

</td>

</tr>

<tr>

<tdheight="50"colspan="2"align="center"><inputtype="button"name="sm1"value="登录"onClick="this.form.submit();">

<inputtype="button"name="sm2"value="PowerbyDedeCms"onClick="window.open('http://www.jb51.net');">

</td>

</tr>

</table>

</form></td>

</tr>

<tr>

<tdwidth="100%"height="2"valign="top"></td>

</tr>

</table>

</body>

</html>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新php教程学习
    热门php教程学习
    编程开发子分类