网站系统教程
PbootCMS附件上传失败报错UNKNOW: Code: 8192; Desc: stripos():
来源:     阅读:363
源码网
发布于 2021-12-12 10:11
查看主页

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;

解决办法:

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

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


替换成

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


免责声明:本文为用户发表,不代表网站立场,仅供参考,不构成引导等用途。 网站系统教程 pbootcms教程
相关推荐
PbootCMS文章列表没有缩略图时也不显示默认图片
pbootcms模板如何做好安全防护
栏目页调用当前栏目的文章(常用于侧边栏新闻)
pbootcms模板如何调用当前站点网址和当前页面网址
PbootCMS制作个性分页条之单页/总页数效果