今天安装thinkcmf时进入后台保存网站信息配时,出现fileowner(): stat failed for /oss。ossfs目录是我挂载的oss盘,提示没有写入权限。不知道为什么thinkcmf会扫描整个linux目录。
解决办法是dir.php类里的
临时解决办法:修改/vendor/thinkcmf/cmf/src/common.php cmf_clear_cache()方法
$dirTool = new Dir(""); 改成 $dirTool = new Dir(WEB_ROOT);