授予 www-data 用户读取权限
我想向 www-data
用户授予读取和正确访问权限。
当我右键单击文件夹 /var/www/
时,我选择了“读取和写入文件”选项,但是单击“应用”后,它再次变为 -
(破折号)。
我正在使用 php exec
命令创建新目录。但由于此问题,无法使用 ls 命令列出新文件夹。
问题是什么?
I want to give read and right access to www-data
user..
When I Right click the folder /var/www/
I selected the option Read and Write Files, but after clicking apply, it becomes -
(dash) again..
I am creating new directory using php exec
command. But because of this problem, the new folder is not being listed using the ls
command.
What is the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试手动更改权限(从控制台)?
你可以这样做: # chown -R www-data /var/www
这会将 /var/www 内所有文件的所有权更改为 www-data。
Did you try to change permissions manually (from the console)?
You can do it like this: # chown -R www-data /var/www
This will change ownership of all files inside /var/www to www-data.
显然,这是因为我使用的是
exec
而不是shell_exec
。这两天我一直摸不着头脑,解决办法总是很简单。Apparently, it was because I was using
exec
instead ofshell_exec
. For the past two days I have been scratching my head, always the solution is a simple one.