php file permissions

Updated: 10 September 2022

Set folder and file permissions for a php project

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;