PbootCMS 织梦提示Error:check Snooping out of bounds

  • 解决方法
    • 打开 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);
      }

       

posted @ 2024-11-07 23:05  黄文Rex  阅读(5)  评论(0)    收藏  举报