首页 > CMS > 织梦DEDE > 正文

新建目录为411权限_DedeCms教程

2024-08-30 19:09:29
字体:
来源:转载
供稿:网友

新建目录为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;
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表