Here is how to fix permissions so your site is more secure.
Recursively change permissions on all files:
- Navigate to your public_html folder
- Run the following: find . -type d -exec chmod 755 {} \;
Recursively change permissions on all folders:
- Navigate to your public_html folder
- Run the following: find . -type f -exec chmod 644 {} \;