If in case you have tried to add a big media file to your WordPress web site earlier than, you might need seen an error message telling you that it exceeded the utmost file add dimension. This may be fairly a roadblock, particularly should you’re making a web site with a number of media components resembling photographs and video.
Fortuitously, there are methods to get round this restrict. Whether or not you’re new to coding, extra acquainted with it, or need to keep away from that route altogether, there’s a way for you to enhance your most file add dimension and get your content material revealed.
On this tutorial, we’ll talk about what determines your default most file add dimension and why it exists. Then, we’ll discover three easy strategies that you should utilize to enhance this quantity. Let’s get began!
Why Increase Your Maximum File Upload Size
You is perhaps asking your self why there’s a most file add dimension in WordPress in any respect. Loads of folks use WordPress to share every kind of media with enormous recordsdata. If it may be elevated anyway, what’s the aim of placing a default cap on it?
The reply is twofold.
First, it’s not WordPress that units these limits however your internet hosting supplier. The most add file dimension is a server-level setting, and as such, it’s up to them.
You’ll find your preliminary restrict by navigating to Add New below Media in your WordPress dashboard’s sidebar. On this instance, the add restrict is eight MB:

Some hosts hold your restrict as little as 2 MB, others will set it round 40 MB, and a few high out at a whopping 150 MB. All of it is determined by your host and what they’ve determined to present.
Second, whereas the restrict could be a little bit of a problem for some customers, it serves an necessary objective. A most add dimension retains malicious customers from flooding your web site with enormous recordsdata that may decelerate your servers.
Nonetheless, you might need to enhance the restrict in some unspecified time in the future. Movies, audio recordsdata, and high-quality photographs can have bigger necessities than your host begins you out with. This may be a difficulty should you’re attempting to combine extra media into your WordPress web site.
Fortuitously, there are a couple of methods which you can set the restrict you want. Should you’re attempting to get forward of bot uploads, you additionally would possibly need to take into account pairing one of many following strategies with a remark plugin that has anti-spam performance.
How to Increase Maximum File Upload Size in WordPress (Three Strategies)
So, how do you enhance your web site’s most add dimension? There are three principal methods to do that — let’s have a look at every in flip.
Earlier than that, nonetheless, it bears repeating that each host works somewhat in another way. It’s doable that a few of these strategies gained’t work along with your supplier. I like to recommend attempting one resolution at a time till you discover the one that matches your wants.
1. Add Some Code to Your WordPress Web site’s .htaccess File
Our first methodology includes digging into your web site’s code and accessing its .htaccess file. Should you’re not a fan of code, don’t fear! You gained’t have to write any your self.
All you’ve to do is copy and paste some pre-written strains. That makes this a great strategy should you’re snug with accessing your web site’s recordsdata, however not as skilled in precise improvement.
The .htaccess file is a core a part of your WordPress web site. Whereas it serves a number of functions, the one we’ll concentrate on right here is its relationship to the server. By including some code to .htaccess, you’re giving directions to the server to raise your restrict.
In fact, a server can solely present what the host permits. For instance, in case your host doesn’t have the power to assist 150 MB uploads, altering the restrict to 150 MB in the .htaccess file gained’t have the specified impact. Should you’re in any doubt about what your host allows, you possibly can contact them immediately for extra particulars.
You’ll additionally want a file supervisor to get began. Should you don’t have a File Switch Protocol (FTP) consumer but, I like to recommend FileZilla. It’s a dependable device to use along with your WordPress web site and studying how to function it’s pretty easy.
After getting accessed your web site’s recordsdata utilizing FileZilla, open your WordPress root folder to discover your .htaccess file:

Then, open the .htaccess file utilizing a textual content or code editor. Copy and paste the next code on the finish of the file:
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value max_execution_time 300
php_value max_input_time 300
You should use totally different values, too.
Your .htaccess file ought to now look one thing like this:

Save the file and re-upload it to the server. Then revisit your web site’s add display screen. Your add dimension ought to now be elevated to 128 MB (or no matter worth you selected). If it hasn’t modified, you possibly can delete your additions to the .htaccess file and transfer on to our subsequent technique.
2. Create or Edit Your WordPress Web site’s php.ini File
This methodology may also require you to use FileZilla and root round in your web site’s code. Nevertheless, since it’d require the creation of a brand new file, it’s a bit trickier than the .htaccess strategy.
What you’ll want to do is create a file referred to as php.ini, which can override your server’s PHP configuration settings. A kind of settings is your most add dimension.
Related to the .htaccess methodology, this could’t increase your add dimension past the server’s most functionality. Fortuitously, that most is usually greater than sufficient for typical WordPress uploads.
Should you’re a bit extra skilled with utilizing an FTP consumer to entry web site recordsdata, it is a good methodology to attempt. It may also be a helpful introductory problem should you’re wanting to apply your improvement expertise.
Step one is to use FileZilla to open your web site’s root folder:

Test to see if there’s already a file named php.ini. There’s a great likelihood that it gained’t be there. In that case, merely create a file in your textual content or code editor, title it “php.ini”, and put it aside in your root folder.
Then, copy and paste the next code into your new clean file:
memory_limit = 64M
upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300
When you’ve entered the code, just remember to’ve saved the file in the proper place. After that, you possibly can test your WordPress add display screen. The utmost add file dimension ought to now be elevated to 64 MB.
Should you’re not having luck with this strategy both, delete the brand new php.ini file. If there was already a php.ini file whenever you began, simply take away the code you pasted in. After getting that each one cleaned up, you possibly can transfer on to our third and ultimate tip.
3. Contact Your Net Host Instantly
Since your file dimension restrict is immediately managed by your webhosting supplier, they seemingly even have the facility to enhance it for you. You might need to wait a bit relying in your host’s buyer response occasions, however contacting them could be a easy means to strategy this drawback.
If neither of the above strategies has labored for you, that is the way in which to go. It’s additionally a great choice should you’re not in altering your WordPress web site’s recordsdata and would relatively have another person deal with this job.
All you want to do right here is attain out to your host’s assist workforce to see in the event that they will help. Many hosts are pleased to accommodate cheap requests. As well as, hold in thoughts that that is one more reason to take into account the significance of a strong buyer assist workforce whenever you’re inspecting your internet hosting choices.
Conclusion
The utmost file add dimension could be a difficult restrict to work round. Fortuitously, you possibly can enhance it with somewhat little bit of code or some assist out of your internet hosting supplier.
On this tutorial, we lined 3 ways to assist you to enhance your WordPress web site’s most add dimension:
- Use code to regulate the prevailing .htaccess file
- Create or edit the php.ini file in your web site’s root folder
- Attain out to your internet host for help
What is going to you share along with your new file add restrict? Tell us in the feedback part under!