Permissions

chmod/chown


==============================
Give a File Full Execute Permissions:
==============================

# chmod +x <Full File Path>
# chmod -R 777 <Starting Folder Path>

Permissions Fix


==============================
Permission Fix
==============================

Normal:
find . -type f -exec chmod 664 {} + -o -type d -exec chmod 775 {} +

Secure:
find . -type f -exec chmod 644 {} + -o -type d -exec chmod 755 {} +

Double Secure:
find . -type f -exec chmod 544 {} + -o -type d -exec chmod 555 {} +

find . -type f -exec chmod 400 {} + -o -type d -exec chmod 500 {} +