LouisLaw 发表于 2017-11-13 15:43

Discuz X3.4修改密码时出现参数错误解决教程

很多人在Discuz升级X3.4以后找回密码功能在修改密码时出现参数错误解决教程

找回密码功能在修改密码时出现“参数错误”。

解决需要两步:
1、打开source\module\member\member_getpasswd.php第32行找到
$uid = $_GET['uid'];
在下方添加一行
$sign = $_GET['sign'];

2、找到第8行打开discuz模板文件:template\default\member\getpasswd.htm
<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]
查看完整版本: Discuz X3.4修改密码时出现参数错误解决教程