在本機(jī) E:\wwwroot\DedeCMS\v57\ 下安裝了V57最新版本的主程序,安裝成功后,生成首頁提示 :
=====================
Error:check Snooping out of bounds @ D:\wwwroot\gdhgc\wwwroot\kj\templets\default\article_article.htm
=====================
使用notepad++搜索了下包含 Error:check Snooping out 的文件,找到 include/dedetag.class.php 文件的第
325行,內(nèi)容如下
出現(xiàn)該問題,主要是路徑中包含了大寫字母,使用stripos操作時(shí)忽略大小寫。
if (strpos($path, $this->clean(DEDEROOT)) !== 0) { die('Error:check Snooping out of bounds @ '.$path); } windows下是不區(qū)分路徑大小寫的,在使用strpos時(shí)我們需要忽略大小寫,修改上述內(nèi)容為如下: if (stripos($path, $this->clean(DEDEROOT)) !== 0) { die('Error:check Snooping out of bounds @ '.$path); }
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢DEDECMS:Error:check Snooping out of bounds 的解決辦法