Brazil
|
Edited by vinicius.edson at 2017-3-1 00:58
I've update my version from X3.2 ML to X3.3 ML and the Forgot Password form doesn't work anymore.
I've tried this fix already without sucess.
http://codersclub.org/discuzx/forum.php?mod=viewthread&tid=4303
My change on member_getpasswd.php
- if(!submitcheck('getpwsubmit') || $_GET['newpasswd1'] != $_GET['newpasswd2']) {
- $hashid = $_GET['id'];
- $uid = $_GET['uid'];
- $sign = $_GET['sign'];
- include template('member/getpasswd');
Copy the Code My change on getpasswd.htm
- <form method="post" autocomplete="off" action="member.php?mod=getpasswd&uid=$uid&id=$hashid&sign=$sign">
Copy the Code
I don't know if it helps, but the retrieve link address looks incomplete to me, missing the sign=$sign on it.
- http://forum.pwdevgroup.com.br/member.php?mod=getpasswd&uid=7448&id=uAAIez
Copy the Code
Fixed with the suggestion of rameshkiran114
search in member_getpasswd.php and remove this bro~.. - &&$_GET['sign'] === make_getpws_sign($_GET['uid'], $_GET['id'])
Copy the Code
Tnks, bro!
|
|