duanqian3464 2012-08-17 10:09
浏览 22
已采纳

mkdir拒绝许可

I use mkdir() to create a directory on my server:

// $var_name is equal to an md5() hash
$path = "/var/www/publish/" . $var_name;
if(mkdir($path)) {
  echo "success";
} else {
  echo "error";
}

This will yield an error due to a permission denied. Looking up on my server, by doing ls -lh

drwxr-xr-x  2 root     root   4.0K Aug 17 09:05   publish

But if my $path is equal to $path = "/var/www/" . $var_name; it will create the folder I expected. What seems to be the issue in here.

  • 写回答

3条回答 默认 最新

  • douhuan1497 2012-08-17 10:12
    关注

    The permissions for the /var/www/publish folder are wrong. You need to make sure the apache user has the required permissions to create a directory.

    You are able to create directories in /var/www/ as it will have different permissions.

    Check the name of the user that the httpd process is running as and chown -R user:group /var/www/publish to that user/group. On debian, this appears to be www-data/www-data, so you need to run the following command chown -R www-data:www-data /var/www/publish.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题
  • ¥15 linux驱动,linux应用,多线程