您现在的位置是:首页 > 教程 > pbootcms教程pbootcms教程
pbootcms附件上传失败报错UNKNOW: Code: 8192; Desc: stripos():
张广房2024-09-20 19:41:49pbootcms教程已有人查阅
导读pbootcms附件上传时报错:上传失败:UNKNOW: Code: 8192; Desc: stripos(): Non-string needles will be interpreted as strings in the future.
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: / / root/aaa.xxxx.com/core/function/file.php; Line: 176;
解决办法:
打开/core/function/file.php,搜索以下
上传失败: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: / / root/aaa.xxxx.com/core/function/file.php; Line: 176;
解决办法:
打开/core/function/file.php,搜索以下
if (stripos($types, $ext) !== false)
替换成
if (stripos($types, chr($ext)) !== false)
本文标签:
很赞哦! ()
相关文章
随机图文
-
pbootcms数据库修改为Mysql数据库配置Mysql出错怎么办
pbootcms数据库配置默认采用sqlITe数据库,不需要做导入和配置操作,如果需要启用Mysql版本,请导入数据库文件(/static/backup/sql/xxx.sql)并修改数据库连接文件信息 -
pbootcms列表参数排序切换时间/浏览量/点赞量/随机排序
PbootCMS排序列表切换-无需二开,通过php代码进行判断即可,点击不同选项实现不同的排序效果,切换上下页依旧是当前排序效果。 -
pbootcms面包屑导航样式修改和自定义的设置方法
pbootcms模板建站的时候,我们需要对系统默认的面包屑标签的样式进行修改,需要怎么操作呢? 面包屑调用 -
pbootcms精确搜索全精准查询的代码写法示例
pbootcms实现全词匹配精确搜索或查询,可用于证书查询,授权查询一类的功能。搜索页面模板标签如下:
留言与评论 (共有 条评论) |