这个错误一般是由于在安装或升级织梦系统过程中的疏漏,导致引用了未定义的函数或函数文件缺失。
function make_hash()
{
$rand = dede_random_bytes(16);
$_SESSION['token'] = ($rand === FALSE)
? md5(uniqid(mt_rand(), TRUE))
: bin2hex($rand);
return $_SESSION['token'];
}
function dede_random_bytes($length)
{
if (empty($length) OR ! ctype_digit((string) $length))
{
return FALSE;
}
if (function_exists('random_bytes'))
{
try
{
return random_bytes((int) $length);
}
catch (Exception $e)
{
return FALSE;
}
}
if (defined('MCRYPT_DEV_URANDOM') && ($output = mcrypt_create_iv($length, MCRYPT_DEV_URANDOM)) !== FALSE)
{
return $output;
}
if (is_readable('/dev/urandom') && ($fp = fopen('/dev/urandom', 'rb')) !== FALSE)
{
is_php('5.4') && stream_set_chunk_size($fp, $length);
$output = fread($fp, $length);
fclose($fp);
if ($output !== FALSE)
{
return $output;
}
}
if (function_exists('openssl_random_pseudo_bytes'))
{
return openssl_random_pseudo_bytes($length);
}
return FALSE;
}
找到报错文件如下:
打开/dede/sys_info.php,找到210行左右
这里我们将make_hash()注释或者删除即可。
以上就是关于织梦系统模板安装好后,进入后台出现 Fatal error: Call to undefined function make_hash()的详细内容,更多请关注常见问题栏目其它相关文章!
常见问题 帮助中心 联系我们 SiteMap 网站地图 代理加盟 TAG聚合 加入VIP
Copyright © 2019-2025 51找模板 版权所有 Powered by 51找模板 备案号:湘ICP备2022014611号
本站部分资源来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!