隨著環(huán)境系統(tǒng)及PHP版本越來越多,碰到的問題也就越來越多,今天織夢(mèng)無憂網(wǎng)技術(shù)在幫客戶安裝默認(rèn)織夢(mèng)dedecms5.7 SP2程序后,點(diǎn)擊系統(tǒng)基本參數(shù)、SQL命令行工具、防采集串混淆空白無效,我們就來解決這一問題。
修改系統(tǒng)文件:common.func.php ,路徑為: /include/common.func.php
找到代碼(大概96-99行):
if (function_exists('openssl_random_pseudo_bytes')) { return openssl_random_pseudo_bytes($length); } |
刪除!
找到代碼(大概66行-69行):
if (empty($length) OR ! ctype_digit((string) $length)) { return FALSE; } |
再其下面增加代碼:
if (function_exists('openssl_random_pseudo_bytes')) { return openssl_random_pseudo_bytes($length); } |
如圖所示:
上一篇:
下一篇:
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: LINUX環(huán)境安裝織夢(mèng)程序后,點(diǎn)擊系統(tǒng)基本參數(shù)、SQL命令行工具、防