首页 > 源码教程 > 其他源码教程

Discuz注册提示“邮箱、密码等无效” 临时解决方案

ok佬 2024-11-20 09:28:12 人看过

问题现象:

注册的时候,输入正确的邮箱,或者密码确认的时候,提示输入不正确


问题原因:

由于注册表单中name是随机产生的,当产生name为纯数字的时候会产生问题。


解决方案:

打开function_core.php,找到random函数

function random($length, $numeric = 0) {
       $seed = base_convert(md5(microtime().$_SERVER['DOCUMENT_ROOT']), 16, $numeric ? 10 : 35);
       $seed = $numeric ? (str_replace('0', '', $seed).'012340567890') : ($seed.'zZ'.strtoupper($seed));
       $hash = '';
       $max = strlen($seed) - 1;
       for($i = 0; $i < $length; $i++) {
              $hash .= $seed{mt_rand(0, $max)};
       }
       return $hash;
}

更改为:

function random($length, $numeric = 0) {
        $seed = base_convert(md5(microtime().$_SERVER['DOCUMENT_ROOT']), 16, $numeric ? 10 : 35);
        $seed = $numeric ? (str_replace('0', '', $seed).'012340567890') : ($seed.'zZ'.strtoupper($seed));
        if($numeric) {
                $hash = '';
        } else {
                $hash = chr(rand(1, 26) + rand(0, 1) * 32 + 64);
                $length--;
        }
        $max = strlen($seed) - 1;
        for($i = 0; $i < $length; $i++) {
                $hash .= $seed{mt_rand(0, $max)};
        }
        return $hash;
}


© 版权声明

发表评论

加载中~

编辑推荐

热门文章

OK资源库是一家专注各类源码分享,绿色软件分享,资源接口分享,福利线报分享,源码教程。我们每日更新免费可靠的资源,注册就是VIP会员更深受用户好评,是您首选的资源下载站
Copyright © 2023-2024 OK资源库 版权所有 琼ICP备202309987431号-1