-
道路护栏交通设施类网站...
-
大理石瓷砖生产类网站织...
-
娱乐新闻资讯类网站织梦...
-
五金制品厨房用品类网站...
-
园林石业装饰石材类网站...
-
全自动溶剂萃取仪器设备...
-
互联网新闻博客资讯类网...
-
dedecms微信电子名片系统...
-
财税记账类网站织梦模板...
-
模板源码商城下载类网站...
-
粮食米业类网站织梦模板...
-
淘宝客程序团购打折类网...
-
美容化妆类网站织梦模板...
-
床上用品类网站织梦模板...
-
网页素材下载类网站织梦...
-
投资财富管理类网站织梦...
-
医用防护口罩类网站织梦...
-
财富管理培训咨询类网站...
-
空气净化器设备类网站织...
-
小程序社交电商开店网络...
最新的织梦版本(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;}


