33

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.

Jalpesh Patel
  • 3,150
  • 10
  • 44
  • 68
  • 4
    It must be for `linux` you can skip that step for win 7. – Rikesh Jul 09 '12 at 06:07
  • See also [In a PHP / Apache / Linux context, why exactly is chmod 777 dangerous?](/questions/2338641/in-a-php-apache-linux-context-why-exactly-is-chmod-777-dangerous) – tripleee May 25 '18 at 05:08

4 Answers4

58

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

Junaid
  • 2,084
  • 1
  • 20
  • 30
  • 1
    how chmod works for windows 7 – AjayR Mar 27 '14 at 07:19
  • 1
    chmod is a unix based command not for windows. If you want to set permissions in windows you may use the procedure I wrote in the 2nd para `....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...` – Junaid Apr 01 '14 at 07:46
  • if that doesn't work try to see if some configuration of the server is blocking the delivery of the files for a specific path – Julio Marins Dec 04 '14 at 15:28
  • Nube question, what is the the `0` in front of `0777`, I thought `777` was suffice? – giannis christofakis Aug 13 '15 at 14:23
8

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.

dpitkevics
  • 1,238
  • 8
  • 12
6
  1. Right click the folder, click on Properties.
  2. Click on the Security tab
  3. Add the name Everyone to the user list.
ErJab
  • 6,056
  • 10
  • 42
  • 54
0

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.

j0k
  • 22,600
  • 28
  • 79
  • 90
jibon
  • 19
  • 2
    Please read the existing answers before resurrecting an old thread. That was [already suggested several months ago](http://stackoverflow.com/a/11389789/104223). – Leigh Aug 11 '13 at 15:59