輸入完新的密碼,點(diǎn)提交就提示參數(shù)錯(cuò)誤。
解決方法:
找到
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">