输入完新的密码,点提交就提示参数错误。
解决方法:
找到
source\module\member\member_getpasswd.php
第32行找到

$uid = $_GET['uid'];在下方添加一行
$sign = $_GET['sign'];打开 template\default\member\getpasswd.htm 找到第8行
<form method="post" autocomplete="off" action="member.php?mod=getpasswd&uid=$uid&id=$hashid">修改为:
<form action="member.php?mod=getpasswd&uid=$uid&id=$hashid&sign=$sign" autocomplete="off" method="post">
发表评论 取消回复