WordPress file permissions
To correct your WordPress file permissions, enter the directory containing the WordPress installation and execute the commands below:
- find . -type d -exec chmod 755 {} \;
- find . -type f -exec chmod 644 {} \;
While uploading files to your WordPress and/or any other system, you may have noticed the default allowed upload file size being rather small.
You can check out here how to change this.