演示链接:查看演示

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

PbootCMS附件上传时报错:

图片[1]-PbootCMS附件上传失败报错UNKNOW: Code: 8192; Desc: stripos():-论坛搭建_网站论坛制作_论坛开发建设_800元全包

上传失败: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,搜索以下
 

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

替换成

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

THE END
喜欢就支持一下吧
点赞0 分享