PbootCMS附件上传失败报错UNKNOW: Code: 8192; Desc: stripos()

  • 解决办法
    • 打开/core/function/file.php,搜索以下代码:
      php
       
      if (stripos($types, $ext) !== false)
    • 替换成:
      php
       
      if (stripos($types, chr($ext)) !== false)