Codeigniter中mkdir创建目录遇到权限问题和解决方法
程序员文章站
2022-05-25 20:15:52
今天在用 codeigniter 上传文件时(部署在 centos),提示如下错误:
a problem was encountered while attempting...
今天在用 codeigniter 上传文件时(部署在 centos),提示如下错误:
a problem was encountered while attempting to move the uploaded file to the final destination.
相关代码:
复制代码 代码如下:
//目录检测
if (!is_dir($cache_path)) mkdir($cache_path, '777');
修改为如下代码既解决问题:
复制代码 代码如下:
//目录检测
if (!is_dir($cache_path)) mkdir($cache_path, 0777);
上一篇: 儿子三个月了