小鱼儿模板网专注于织梦源码分享、织梦模板、discuz模板、wordpress主题等网站模板,为广大站长提供网站模板以及Discuz插件等素材。
用户名:
密码:
注册

织梦源码,模板王

VIP

CMS教程

站长学院

Discuz! X3.2新版邮箱重置密码失败解决方法

www.adminbuy.cn / 2015-01-17
 
昨天发布的新版补丁,应该修复了一个重置密码的漏洞,但直接导致新的bug,补丁后重置密码的链接无法重置密码了,设置完点击就出错:解决方案,修改member_getpasswd.php和member_getpasswd.php添加按钮代码获取sign。
 
\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">
 
 
 
\source\module\member\member_getpasswd.php
 
 
                $hashid = $_GET['id'];
                $uid = $_GET['uid'];
 
 
改成
 
                $hashid = $_GET['id'];
                $uid = $_GET['uid'];
                $sign = $_GET['sign'];
收缩