亲测可用 友价T5商城源码后台密码重置文件,忘记后台管理员密码设置文件
代码片段和文件信息
<?php
include("config/conn.php");
function delFile($nowu){if(is_file($nowu)){unlink($nowu);}}
function MakePass($length){
$possible = "0123456789abcdefghijklmnpqrstuvwxyz";
$str = "";
while(strlen($str)<$length)
{$str .= substr($possible,(rand() % strlen($possible)),1);}
return($str);
}
$sql="select * from yjcode_admin where adminuid='admin'";mysql_query("SET NAMES 'GBK'");
$res=mysql_query($sql);
if($row=mysql_fetch_array($res)){
// $pwd=MakePass(6);//生成密码串
$pwd="admin1";
$newpwd=sha1($pwd);
// $newpwd='6c7ca345f63f835cb353ff15bd6c5e052ec08e7a';//密码为admin1
$adminuid=$row['adminuid'];
updatetable("yjcode_admin","adminpwd=".$newpwd." where adminuid=".$adminuid);
echo "<h1 align='center' style='margin-top:100px;'>admin的密码为admin1</h1>";
}
?>
重置后台密码的方法:
1、根据你的源码下载相应的文件
2、解压到网站根目录下
3、运行 http://你的网址/getpwd.php
本文链接:http://78moban.cn/post/15157.html
版权声明:站内所有文章皆来自网络转载,只供模板演示使用,并无任何其它意义!