最新公告
  • 欢迎您光临源码资源下载站!
  • PbootCMS附件上传失败报错UNKNOW: Code: 8192; Desc: stripos():

    正文概述    2026-03-12 14:59:00  
    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,搜索以下
     

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

    替换成
     
    if (stripos($types, chr($ext)) !== false)
    之星模板网,一个优质的源码资源平台!
    之星模板网 » PbootCMS附件上传失败报错UNKNOW: Code: 8192; Desc: stripos():