‘This file exceeds the maximum upload size for this site.’
Anyone who has ever gotten this error knows how frustrating it can be, especially when the file in question is an important one.
By default, WordPress allows file uploads of up to 150MB, but this is also dependent on your web hosting provider.
This limit becomes a problem for obvious reasons when you need to upload larger images and videos to your site.
This begs the question, how can you increase the maximum file upload size in WordPress?
Well, here are five effective ways!
How to Find Your Current Maximum Upload Size
The built-in media uploader on WordPress is a time saver as it enables you to upload files without using your hosting provider’s file manager or connecting with an FTP client.
However, it comes with its own set of limitations: an upload limit on the maximum size for files.
This limit is dependent on two factors; your WordPress configuration and the limit set by your hosting provider.
To check your current upload file limit on your WordPress site, log in to your WordPress dashboardIn WordPress, the Dashboard is a central hub for managing a website's content and settings. It is the first sc... More and go to Media > Add New
.
The maximum upload file size is displayed below the uploader:
5 Ways to Increase the Maximum File Upload Size In WordPress
Most times, the limit set by the WordPress media uploader should be enough for regular use, but there are plenty of scenarios where you may need to upload larger files.
Here’s how to deal with the “This file exceeds the maximum upload size for this site” error.
1. Edit Your functions.php File
If you are comfortable editing your WordPress themeA WordPress theme is a set of files that determine the design and layout of a website. It controls everything ... More files, editing your theme’s functions.php
file is a quick fix option.
You can modify the functions.php file right from your WordPress admin area by going to Appearance > Theme Editor
and selecting the functions file.
From there, simply add the following code to the end of the file:
@ini_set( 'upload_max_size' , '64M' );
@ini_set( 'post_max_size', '64M');
@ini_set( 'max_execution_time', '300' );
Save your changes and you’re good to go!
Note: We always recommend using a child theme to modify your functions.php
file—otherwise your changes may be overwritten by a future theme update. Also keep in mind that this change will be undone if you switch to a different theme in the future.
2. Edit Your php.ini File
Your web hosting provider may set an upload limit on your site in order to preserve their hosting resources.
The php.ini
file is used to configure all actions and applications running on PHP and also contains the file upload parameters.
This method requires you to access your WordPress site’s root directory via FTP or SSH.
There are cases where this file is not visible, especially when you have shared hosting, so you may need to create a php.ini
file and upload it to the root folder.
Open the php.ini
file and paste this code:
upload_max_filesize = 25M
post_max_size = 13M
memory_limit = 30M
Use FTP or SSH to upload this file.
3. Edit your .htaccess File
This method is most effective for WordPress sites on web servers that use Apache, and it involves editing the .htaccess
file in the root directory of your WordPress site.
Use an FTP client and locate the WordPress root directory (usually public_html
).
This file may be hidden by default, so you may need to enable the “show hidden files” option to locate it.
Open the .htaccess file and paste the following code:
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300
You can replace the numbers according to your unique requirements. The input and execution time are measured in seconds and define the time spent on a single file upload.
4. Use a Plugin
If the above methods are a bit technical for your taste, you can also get the job done with a pluginA plugin is a software component that adds specific features and functionality to your WordPress website. Esse... More.
Specifically, you’ll want to install the Increase Maximum Upload File Size plugin.
After installing the plugin, simply go to Settings > Increase Maximum Upload File Size
and select your preferred maximum file size:
5. Contact Your Web Host
If none of the above methods work, contact your hosting provider for help.
In some hosting environments, a system administrator may need to increase the maximum file size for you.
Make sure your WordPress site is hosted by a highly responsive hosting provider to ensure you receive help in a timely manner.
Final Thoughts
The file upload size limit error can be quite annoying, but the techniques above should help you to get it resolved ASAP.
Do you have more methods that WordPress site owners can use to increase the maximum upload file size? Feel free to share in the commentsComments are a feature of WordPress that allow users to engage in discussions about the content of a website. ... More section, along with which method worked best for you!