Published
- 1 min read
chmod files 644 directories 755
The solution for this is noted below
chmod files 644 directories 755
Solution
# . is the path to start the search
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
Try other methods by searching on the site. That is if this doesn’t work