- 解决办法:
- 修改
file.php
文件:- 打开
core/function/file.php
文件。 - 搜索
if (stripos($types, $ext) !== false)
。 - 替换为
if (stripos($types, chr($ext)) !== false)
。
- 打开
- 修改


分享服务器维护、抵抗入侵、防篡改、防御攻击、排查后门木马、清理挖矿病毒、网络安全、信息安全、内网安全、数据灾备、网站搬迁、程序升级、威胁情报、网站安全运维的日常知识
file.php
文件:
core/function/file.php
文件。if (stripos($types, $ext) !== false)
。if (stripos($types, chr($ext)) !== false)
。