Discuz X3.2 找回密码功能在修改密码时出现“参数错误”的解决方法
用户点击找回密码邮件里面的链接以后,当输入新密码点击提交后弹出“参数错误”提示,解决方法如下:
打开文件
source/module/member/member_getpasswd.php
找到代码
$uid = $_GET['uid'];
(大概在第32行)在这一行下面新增代码
$sign = $_GET['sign'];
并保存文件打开discuz模板文件
template/default/member/getpasswd.htm
找到
<form method="post" autocomplete="off" action="member.php?mod=getpasswd&uid=$uid&id=$hashid">
(大概在第8行)修改为
<form method="post" autocomplete="off" action="member.php?mod=getpasswd&uid=$uid&id=$hashid&sign=$sign">