📌 Goal:

Make sure all files in your project are readable and editable properly.


🔧 Command:

bash
CopyEdit
sudo find /var/www/mytestsite -type f -exec chmod 644 {} \\;

🧠 Breakdown:

Part Meaning
-type f Search for files only
chmod 644 Owner = read/write, Group & Others = read-only

✅ What It Does:

💡 Used with themes, plugins, config files, etc.