PbootCMS 织梦提示Error_check Snooping out of bounds

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

       

COS、CDN
热门