PbootCMS附件上传失败报错UNKNOW_ Code_ 8192; Desc_ stripos()_

COS、CDN

当遇到上传失败报错 UNKNOW: Code: 8192; Desc: stripos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior; File: /www/wwwroot/aaa.xxxx.com/core/function/file.php; Line: 176; 时,可以通过修改代码来解决该问题。

解决方案

  1. 定位问题代码
  2. 修改代码
  3. 验证结果

详细步骤

1. 定位问题代码

  1. 打开文件
    • 打开 /core/function/file.php 文件。
    • 查找以下代码行:
      if (stripos($types, $ext) !== false)

2. 修改代码

  1. 替换代码
    • 将上述代码替换为:
      if (stripos($types, chr($ext)) !== false)

       

COS、CDN
热门