This is a paragraph, which is text surrounded by whitespace. Paragraphs can be on one
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo chown www-data:www-data -R * # Let apache be owner | |
find . -type d -exec sudo chmod 755 {} \; # Change directory permissions rwxr-xr-x | |
find . -type f -exec sudo chmod 644 {} \; # Change file permissions rw-r--r-- |