EditPassword.php 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //修改密码
  19. function EditPassword($userid,$username,$oldpassword,$password,$repassword,$styleid,$oldstyleid,$add){
  20. global $empire,$dbtbpre,$gr;
  21. $userid=(int)$userid;
  22. $styleid=(int)$styleid;
  23. $oldstyleid=(int)$oldstyleid;
  24. $username=RepPostVar($username);
  25. $oldpassword=RepPostVar($oldpassword);
  26. $password=RepPostVar($password);
  27. $truename=RepPostStr($add[truename]);
  28. $email=RepPostStr($add[email]);
  29. if(!$userid||!$username)
  30. {
  31. printerror("EmptyOldPassword","history.go(-1)");
  32. }
  33. //修改密码
  34. $a='';
  35. if($oldpassword)
  36. {
  37. if(!$username||!$oldpassword)
  38. {
  39. printerror("EmptyOldPassword","history.go(-1)");
  40. }
  41. if(!trim($password)||!trim($repassword))
  42. {
  43. printerror("EmptyNewPassword","history.go(-1)");
  44. }
  45. if($password<>$repassword)
  46. {
  47. printerror("NotRepassword","history.go(-1)");
  48. }
  49. if(strlen($password)<6)
  50. {
  51. printerror("LessPassword","history.go(-1)");
  52. }
  53. $user_r=$empire->fetch1("select userid,password,salt,salt2 from {$dbtbpre}enewsuser where username='".$username."' limit 1");
  54. if(!$user_r['userid'])
  55. {
  56. printerror("OldPasswordFail","history.go(-1)");
  57. }
  58. $ch_oldpassword=DoEmpireCMSAdminPassword($oldpassword,$user_r['salt'],$user_r['salt2']);
  59. if($user_r['password']!=$ch_oldpassword)
  60. {
  61. printerror("OldPasswordFail","history.go(-1)");
  62. }
  63. $salt=make_password(8);
  64. $salt2=make_password(20);
  65. $password=DoEmpireCMSAdminPassword($password,$salt,$salt2);
  66. $a=",password='$password',salt='$salt',salt2='$salt2'";
  67. }
  68. //风格
  69. if($gr['dochadminstyle'])
  70. {
  71. $a.=",styleid='$styleid'";
  72. }
  73. $sql=$empire->query("update {$dbtbpre}enewsuser set truename='$truename',email='$email'".$a." where username='$username'");
  74. //安全提问
  75. $equestion=(int)$_POST['equestion'];
  76. $eanswer=$_POST['eanswer'];
  77. $uadd='';
  78. if($equestion)
  79. {
  80. if($equestion!=$_POST['oldequestion']&&!$eanswer)
  81. {
  82. printerror('EmptyEAnswer','');
  83. }
  84. if($eanswer)
  85. {
  86. $eanswer=ReturnHLoginQuestionStr($userid,$username,$equestion,$eanswer);
  87. $uadd=",eanswer='$eanswer'";
  88. }
  89. }
  90. else
  91. {
  92. $uadd=",eanswer=''";
  93. }
  94. $empire->query("update {$dbtbpre}enewsuseradd set equestion='$equestion'".$uadd." where userid='$userid'");
  95. if($sql)
  96. {
  97. //操作日志
  98. insert_dolog("");
  99. //改变风格
  100. if($styleid!=$oldstyleid)
  101. {
  102. $styler=$empire->fetch1("select path from {$dbtbpre}enewsadminstyle where styleid='$styleid'");
  103. if($styler['path'])
  104. {
  105. $set=esetcookie("loginadminstyleid",$styler['path'],0,1);
  106. }
  107. printerror("EditPasswordSuccessLogin","../index.php");
  108. //echo"Edit password success!<script>parent.location.href='../admin.php".hReturnEcmsHashStrHref2(1)."';</script>";
  109. exit();
  110. }
  111. else
  112. {
  113. printerror("EditPasswordSuccess","EditPassword.php".hReturnEcmsHashStrHref2(1));
  114. }
  115. }
  116. else
  117. {printerror("DbError","history.go(-1)");}
  118. }
  119. $gr=$empire->fetch1("select dochadminstyle from {$dbtbpre}enewsgroup where groupid='$loginlevel'");
  120. $enews=$_POST['enews'];
  121. if(empty($enews))
  122. {$enews=$_GET['enews'];}
  123. if($enews)
  124. {
  125. hCheckEcmsRHash();
  126. }
  127. //修改密码
  128. if($enews=="EditPassword")
  129. {
  130. $oldpassword=$_POST['oldpassword'];
  131. $password=$_POST['password'];
  132. $repassword=$_POST['repassword'];
  133. $styleid=(int)$_POST['styleid'];
  134. $oldstyleid=(int)$_POST['oldstyleid'];
  135. EditPassword($logininid,$loginin,$oldpassword,$password,$repassword,$styleid,$oldstyleid,$_POST);
  136. }
  137. $r=$empire->fetch1("select userid,styleid,truename,email from {$dbtbpre}enewsuser where userid='$logininid'");
  138. $addur=$empire->fetch1("select equestion from {$dbtbpre}enewsuseradd where userid='$r[userid]'");
  139. if($gr['dochadminstyle'])
  140. {
  141. //后台样式
  142. $stylesql=$empire->query("select styleid,stylename,path from {$dbtbpre}enewsadminstyle order by styleid");
  143. $style="";
  144. while($styler=$empire->fetch($stylesql))
  145. {
  146. if($r[styleid]==$styler[styleid])
  147. {$sselect=" selected";}
  148. else
  149. {$sselect="";}
  150. $style.="<option value=".$styler[styleid].$sselect.">".$styler[stylename]."</option>";
  151. }
  152. }
  153. db_close();
  154. $empire=null;
  155. ?>
  156. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  157. <html>
  158. <head>
  159. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  160. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  161. <title>修改资料</title>
  162. </head>
  163. <body>
  164. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  165. <tr>
  166. <td>位置:<a href="EditPassword.php<?=$ecms_hashur['whehref']?>">修改个人资料</a></td>
  167. </tr>
  168. </table>
  169. <form name="form1" method="post" action="EditPassword.php" autocomplete="off">
  170. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  171. <?=$ecms_hashur['form']?>
  172. <tr class="header">
  173. <td height="25" colspan="2">修改资料
  174. <input name="enews" type="hidden" id="enews" value="EditPassword"> </td>
  175. </tr>
  176. <tr bgcolor="#FFFFFF">
  177. <td width="19%" height="25">用户名:</td>
  178. <td width="81%" height="25">
  179. <?=$loginin?> </td>
  180. </tr>
  181. <tr bgcolor="#FFFFFF">
  182. <td height="25">旧密码:</td>
  183. <td height="25"><input name="oldpassword" type="password" id="oldpassword" size="32">
  184. <font color="#666666">(不修改密码,请留空) </font></td>
  185. </tr>
  186. <tr bgcolor="#FFFFFF">
  187. <td height="25">新密码:</td>
  188. <td height="25"><input name="password" type="password" id="password" size="32">
  189. <font color="#666666">(不修改密码,请留空) </font></td>
  190. </tr>
  191. <tr bgcolor="#FFFFFF">
  192. <td height="25">重复新密码:</td>
  193. <td height="25"><input name="repassword" type="password" id="repassword" size="32">
  194. <font color="#666666">(不修改密码,请留空) </font></td>
  195. </tr>
  196. <tr bgcolor="#FFFFFF">
  197. <td height="25">&nbsp;</td>
  198. <td height="25"><font color="#666666">(说明:密码设置6位以上,区分大小写,且密码不能包含:$
  199. &amp; * # &lt; &gt; ' &quot; / \ % ; 空格)</font></td>
  200. </tr>
  201. <tr bgcolor="#FFFFFF">
  202. <td height="25">安全提问:</td>
  203. <td height="25"> <select name="equestion" id="equestion">
  204. <option value="0"<?=$addur[equestion]==0?' selected':''?>>无安全提问</option>
  205. <option value="1"<?=$addur[equestion]==1?' selected':''?>>母亲的名字</option>
  206. <option value="2"<?=$addur[equestion]==2?' selected':''?>>爷爷的名字</option>
  207. <option value="3"<?=$addur[equestion]==3?' selected':''?>>父亲出生的城市</option>
  208. <option value="4"<?=$addur[equestion]==4?' selected':''?>>您其中一位老师的名字</option>
  209. <option value="5"<?=$addur[equestion]==5?' selected':''?>>您个人计算机的型号</option>
  210. <option value="6"<?=$addur[equestion]==6?' selected':''?>>您最喜欢的餐馆名称</option>
  211. <option value="7"<?=$addur[equestion]==7?' selected':''?>>驾驶执照的最后四位数字</option>
  212. </select> <font color="#666666">
  213. <input name="oldequestion" type="hidden" id="oldequestion" value="<?=$addur[equestion]?>">
  214. (如果启用安全提问,登录时需填入相应的项目才能登录)</font></td>
  215. </tr>
  216. <tr bgcolor="#FFFFFF">
  217. <td height="25">安全回答:</td>
  218. <td height="25"><input name="eanswer" type="text" id="eanswer" size="32">
  219. <font color="#666666">(如果修改答案,请在此输入新答案。区分大小写)</font></td>
  220. </tr>
  221. <tr bgcolor="#FFFFFF">
  222. <td height="25">姓名:</td>
  223. <td height="25"><input name="truename" type="text" id="truename" value="<?=$r[truename]?>" size="32"></td>
  224. </tr>
  225. <tr bgcolor="#FFFFFF">
  226. <td height="25">邮箱:</td>
  227. <td height="25"><input name="email" type="text" id="email" value="<?=$r[email]?>" size="32"></td>
  228. </tr>
  229. <?php
  230. if($gr['dochadminstyle'])
  231. {
  232. ?>
  233. <tr bgcolor="#FFFFFF">
  234. <td height="25">操作界面:</td>
  235. <td height="25"><select name="styleid" id="styleid">
  236. <?=$style?>
  237. </select> <input type="button" name="Submit6222322" value="管理后台样式" onclick="window.open('../template/AdminStyle.php<?=$ecms_hashur['whehref']?>');">
  238. <input name="oldstyleid" type="hidden" id="oldstyleid" value="<?=$r[styleid]?>"> </td>
  239. </tr>
  240. <?php
  241. }
  242. ?>
  243. <tr bgcolor="#FFFFFF">
  244. <td height="25">&nbsp;</td>
  245. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置">
  246. </td>
  247. </tr>
  248. <tr bgcolor="#FFFFFF">
  249. <td height="25" colspan="2"><font color="#666666">说明:密码设置6位以上,区分大小写,且密码不能包含:$
  250. &amp; * # &lt; &gt; ' &quot; / \ % ; 空格</font></td>
  251. </tr>
  252. </table>
  253. </form>
  254. </body>
  255. </html>