Moderator
t-p
(@t-p)
It’s not a theme setting, nor a WordPress one (unless you’re on MultiSite). It’s your server. You may need to ask your webhost.
Hey exerson,
To increase/decrease your maximum upload file size, these are 2 common ways:
- Use Increase Upload Max Filesize plugin
- Add php directives to .htaccess file
- By using an FTP client like Filezilla, log in to your website’s hosting.
- Once there you should see a file named .htaccess in the root directory (where wp-admin, wp-includes, etc., are located)
- Open that file, add following:
php_value upload_max_filesize 64M
Where 64 is the maximum file size allowed, which by default is 2MB, but once you add this little line to .htaccess, it will be 64MB. Note: Backup .htaccess file before modifying it