花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來(lái)到素材無(wú)憂(yōu)網(wǎng),按 + 收藏我們
登錄 注冊(cè) 退出 找回密碼

織夢(mèng)出現(xiàn)系統(tǒng)基本參數(shù)空白或顯示Call to undefined function mak

時(shí)間: 2018-12-07 23:49 閱讀: 作者:素材無(wú)憂(yōu)網(wǎng)

最新的織夢(mèng)版本(2018-01-09)修改了include文件夾中的common.func.php,增加了兩個(gè)函數(shù)。

下載的模板文件夾中如果提供了common.func.php文件,很有可能沒(méi)有這兩個(gè)函數(shù),于是會(huì)造成錯(cuò)誤。

需要將這兩個(gè)函數(shù)的代碼粘貼到/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;
}


/**將以上代碼粘貼到

 *  載入小助手,系統(tǒng)默認(rèn)載入小助手

這段代碼的上方即可。

 

版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!

轉(zhuǎn)載請(qǐng)注明: 織夢(mèng)出現(xiàn)系統(tǒng)基本參數(shù)空白或顯示Call to undefined function mak

標(biāo)簽:  
相關(guān)文章
模板推薦