生成首页提示 
Error:check Snooping out of bounds @ D:\wwwroot\www.91084.com\templets\default\article_article.htm
解决方法
打开include/dedetag.class.php文件
找到
if (strpos($path, $this->clean(DEDEROOT)) !== 0) {
die('Error:check Snooping out of bounds @ '.$path);
}
改成
if (stripos($path, $this->clean(DEDEROOT)) !== 0) {
die('Error:check Snooping out of bounds @ '.$path);
}