How to set 777 permission on a particular folder?

2019-01-06 21:40发布

How to set 777 permission on folder.

  • i need to Set the permission of the following folder to 777: admin\includes\module_installation

I do no idea how to set the permission 777 on particular folder in window 7??

Please help me how can I set it? I am using windows 7.

4条回答
啃猪蹄的小仙女
2楼-- · 2019-01-06 22:22

777 is a permission in Unix based system with full read/write/execute permission to owner, group and everyone.. in general we give this permission to assets which are not much needed to be hidden from public on a web server, for example images..

You said I am using windows 7. if that means that your web server is Windows based then you should login to that and right click the folder and set permissions to everyone and if you are on a windows client and server is unix/linux based then use some ftp software and in the parent directory right click and change the permission for the folder.

If you want permission to be set on sub-directories too then usually their is option to set permission recursively use that.

And, if you feel like doing it from command line the use putty and login to server and go to the parent directory includes and write the following command

chmod 0777 module_installation/

for recursive

chmod -R 0777 module_installation/

Hope this will help you

查看更多
来,给爷笑一个
3楼-- · 2019-01-06 22:24

go to FileZilla and select which folder you will be give 777 permission, then right click set permission 777 and select check box, then ok.

查看更多
霸刀☆藐视天下
4楼-- · 2019-01-06 22:30
  1. Right click the folder, click on Properties.
  2. Click on the Security tab
  3. Add the name Everyone to the user list.
查看更多
Juvenile、少年°
5楼-- · 2019-01-06 22:45

Easiest way to set permissions to 777 is to connect to Your server through FTP Application like FileZilla, right click on folder, module_installation, and click Change Permissions - then write 777 or check all permissions.

查看更多
登录 后发表回答