Make sure all files in your project are readable and editable properly.
bash
CopyEdit
sudo find /var/www/mytestsite -type f -exec chmod 644 {} \\;
| Part | Meaning |
|---|---|
-type f |
Search for files only |
chmod 644 |
Owner = read/write, Group & Others = read-only |
💡 Used with themes, plugins, config files, etc.