织梦出现系统基本参数空白或显示Call to undefined function make_hash()

织梦出现系统基本参数空白或显示Call to undefined function make_hash(),第1张

概述最新的织梦版本(2018-01-09)修改了include文件夹中的common.func.php,增加了两个函数。 下载的模板文件夹中如果提供了common.func.php文件,很有可能没有这两个函数,于是会造成错误。 需要将这两个函数的代码粘贴到/include/common.func.php文件中,代码

最新的织梦版本(2018-01-09)修改了include文件夹中的common.func.PHP,增加了两个函数。

下载的模板文件夹中如果提供了common.func.PHP文件,很有可能没有这两个函数,于是会造成错误。

需要将这两个函数的代码粘贴到/include/common.func.PHP文件中,代码如下:


 

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;}


/**将以上代码粘贴到

 *  载入小助手,系统默认载入小助手

这段代码的上方即可。

 
总结

以上是内存溢出为你收集整理的织梦出现系统基本参数空白显示Call to undefined function make_hash()全部内容,希望文章能够帮你解决织梦出现系统基本参数空白或显示Call to undefined function make_hash()所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/1063962.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存