WEBSITE DESIGN

Folder And File Permissions

Date Published:
Last Modified:

Overview

Folder and file permissions are an important aspect of web design. They need to be set carefully to allow the server and users the correct privileges so they can use the site correctly, however they need to be strict enough so that there are no security vulnerabilities.

Bulk Change Of Permissions Using SSH

You can change the permissions of a folder and all sub-folders by using the following command:

$ find ./MyDirectory -type d -exec chmod -v 0755 '{}' \;

You can do a similar thing, but this time with files in the current folder and all sub-folders by changing the -type d to -type f as in the following command:

$ find ./MyDirectory -type f -exec chmod -v 0755 '{}' \;

You can do a test run to make sure it will do the right thing by inserting the command echo between -exec and chmod, as shown in the following command:

$ find ./MyDirectory -type d -exec echo chmod -v 0755 '{}' \;

Like this page? Upvote with shurikens!

Related Content:

Tags:

comments powered by Disqus