PbootCMS附件上傳時報錯:
上傳失?。篣NKNOW: 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)
|