叮叮 发表于 2015-6-3 20:33:54

dz找回密码功能在修改密码时出现参数错误解决方法

解决方法如下:
打开
source\module\member\member_getpasswd.php
第32行找到
$uid = $_GET['uid'];
在下方添加一行
$sign = $_GET['sign'];
打开discuz模板文件:template\default\member\getpasswd.htm
找到第8行
   <form method="post" autocomplete="off" action="member.php?mod=getpasswd&uid=$uid&id=$hashid">
修改为:
   <form method="post" autocomplete="off" action="member.php?mod=getpasswd&uid=$uid&id=$hashid&sign=$sign">

页: [1]
查看完整版本: dz找回密码功能在修改密码时出现参数错误解决方法