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