新建目录为411权限-DedeCms
仿站新建目录为411权限的解决方法
把
inc_functions.php里的
MkdirAll($truepath,$mmode)
if(!file_exists($truepath)) return mkdir($truepath,'0'.$mmode);
改为
if(!file_exists($truepath)){
$rs = mkdir($truepath,0777);
return $rs;
}
相关仿站教程:
- 相关链接:
- 教程说明:
新建目录为411权限-DedeCms
。