VIP福利
主页 > 建站问题 > 故障问题 > pbootcms附件上传失败报错UNKNOW: Code: 8192; Desc: stripos():

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

pbootcms 附件上传时报错: 上传失败: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; 解决 […]



pbootcms附件上传时报错:

image.png

上传失败: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;

解决办法:

打开/core/function/file.php,搜索以下

  1. if (stripos($types, $ext) !== false)

替换成

  1. if (stripos($types, chr($ext)) !== false)

 


说点什么吧
  • 全部评论(0
    还没有评论,快来抢沙发吧!