How to increase the max file upload size in WordPress

How to Change Max File Upload Size in WordPress (4 Easy Methods)

Editorial Note: We may earn a commission when you visit links on our website.

Are you looking to increase the max file upload size in WordPress?

Perhaps you’ve tried uploading images or other media content and got an error message that read something like: “file exceeds the maximum upload size for this website”? This is fairly common with WordPress websites.

Fortunately, there are a few simple ways to fix this. In this article, we’ll share a few simple methods for increasing the max file upload size in WordPress.

Ready? Let’s jump right in!

What Is the Max File Upload Size in WordPress?

By default, the max file upload size for images in WordPress is determined by your hosting service, so it varies.

That said, the common practice is usually to set a limit anywhere between 2MB and 500MB.

The good news is, if your website’s file upload size allocation is lower than what you want, you can easily increase it.

Here’s an easy way to check your site’s max file upload size:

From the WordPress admin dashboard, click on Media » Add New. This will open up the media upload page.

Scroll down to see the Max Upload Size and the value it’s currently set to.

WordPress max upload file size

Knowing the precise upload file size allowed for your site will help you decide how much to increase it by.

How to Increase Max File Upload Size in WordPress

Increasing the max file size can help users upload higher-resolution images, videos, or other media. You can increase the max file upload size in a few ways, including by using a code snippet or directly editing the functions.php file.

Method #1: Adjust Max File Size With a Plugin (No Code)

The easiest way to increase the maximum file size limits in WordPress is by using a very handy plugin known as Big File Uploads.

To get started, download and install the plugin on your website. If you need some help with this step, here’s a quick guide to installing WordPress plugins.

When the plugin is installed, open your WordPress dashboard and navigate to Settings » Big File Uploads.

Big file uploads settings

This will take you to the plugin’s settings page where you can simply specify the maximum upload file size using the adjustment settings on the right and then press Save.

File size adjustments

This method requires no technical knowledge on your part and we highly recommend trying this if you’re looking for a quick and easy way to change your file size limits in WordPress.

Method #2: Add a Code Snippet Using WPCode (Easy)

Another fairly easy way to increase the max file size limit in WordPress is by using a plugin called WPCode.

Although you’ll be working with some very simple lines of code with this method, it’s still super easy to do.

WPCode is an awesome solution for inserting custom code into your functions.php file.

Among its many benefits, it’s extremely easy to use and includes advanced code validation that safeguards you from making coding mistakes that may accidentally break your theme or site.

To install WPCode, you can follow the same steps you followed for installing the plugin in the previous method above.

wpcode home

After you’ve installed WPCode, head into the WordPress admin area and navigate to Code Snippets » + Add New.

Add snippet

Next, you can choose an existing snippet from WPCode’s pre-built library or create your own custom snippet. For this tutorial, we need to create a custom one.

Use snippet

Now, start by adding a title for your snippet and then paste in your code. Just make sure you select the right code type first.

Since we’re working with PHP, use the Code Type dropdown to select PHP Snippet.

PHP snippet

At this point, you can simply copy and paste this code inside the code editor:

@ini_set( 'upload_max_size' , '256M' );
@ini_set( 'post_max_size', '256M');
@ini_set( 'max_execution_time', '300' );

In the code above, the first line defines the max file upload size, which is  256M i.e. 256 MB, in this case.

You may notice that the second line has an identical figure. This line defines the maximum size of posts.

We’re focused on increasing the max file upload size, but the max post size is important too. Here’s why: media files will usually be used in posts. Naturally, you’ll need your posts to have enough space to accommodate your largest files.

So you’ll have to set the max post size to a value equal to or greater than the max file upload size.

Now that you know how this works, go ahead and enter the code, changing the figures to whatever values you’d like.

Once you’ve done this, you can go ahead and check the insertion settings for the code. In this instance, you won’t have to change anything and simply use the default insertion options set to Auto Insert as the insert method and Run Everywhere as the location.

Default insertion settings

Then scroll back up and click Save Snippet. Right next to the save button, you’ll also find a button that should currently read “inactive”. When you’re ready to activate the code, click on the toggle button and it should now immediately read “Active”.

Save snippet WPCode

And that’s it! You can go and check your maximum file size settings. As long as your web host doesn’t restrict the file size, this code snippet will work perfectly to increase your maximum file limit.

Method #3: Directly Edit the functions.php File (Advanced)

The functions.php file can be accessed from within the WordPress backend, making it easy to use.

If you’re comfortable working with live code, this method might be for you. However, we don’t recommend this method for beginners, as there’s a risk of causing serious errors that might break your site.

If you do decide to use this method, the best practice would be to create a backup of your website first before you begin.

Once your site is safely backed up, you can find the functions.php file by navigating to Appearance » Theme File Editor.

theme file editor

A modal will pop up warning that you’re about to edit your website’s core files. As we mentioned, you’ll need to be careful while working with the functions.php file.

But if you’ve created a backup of your website, feel free to proceed by clicking I Understand.

modal warning

Next, look for the functions.php file from the list of files on the panel on the right of your screen.

theme files

Scroll to the bottom of the page and paste in the same code as before:

@ini_set( 'upload_max_size' , '256M' );
@ini_set( 'post_max_size', '256M');
@ini_set( 'max_execution_time', '300' );

Remember that the values in the first two lines define the max file upload size and post size. In this code, the max file and post size is set to 256M, which means you can upload file sizes as large as 256 MB.

If you’d like to change the max limit to a different value, just change the numbers at the end of the first two lines of code to whatever value you’d like (remember that ‘M’ stands for MBs here).

Now, go ahead and paste this code at the bottom of the functions.php file.

code functions php

Remember to save these changes before you exit.

Now that you know how to adjust the file upload limits for WordPress,  did you know that you can also change the max file size limit for your WordPress forms separately?

If you have forms on your site that accept file uploads from visitors, it might be a good idea to set an appropriate file upload size limit specifically for these forms.

Method#4: Adjust File Upload Size for WordPress Forms

As mentioned, this method is all about adjusting the max file upload size just for your WordPress forms.

Thankfully, this is straightforward and doesn’t require any code whatsoever.

Here’s what to do:

Install WPForms

You’ll need a form builder that allows you to create file upload forms and change max file size limits.

Not many WordPress form builders have these features. Fortunately, WPForms does!

WPForms Pro is the best form plugin for WordPress with tons of easy-to-use features and settings, including the ability to adjust the max file upload size for form attachments.

The WPForms homepage

After purchasing WPForms Pro, you can go ahead and install WPForms on your site.

WPForms allows you to create pretty much any type of form, using its powerful drag-and-drop form builder.

You can also choose from 1,600+ form templates to simplify the form creation process as we’ll show in the next step.

Create a New Form

From the WordPress dashboard, click on WPForms » Add New.

Adding a new form in WPForms

This will open up the template library where we’ll choose the Simple Contact Form template.

Click on Use Template to open up the form builder.

simple contact form template

This will load the Simple Contact Form form template.

A form built with the Simple Contact Form template

Like all WPForms templates, this template can be fully customized. In the next step, we’ll add a File Upload field to this form and set a max upload size limit for it.

Add a File Upload Field to Your Form

In the form builder, you’ll see the available form fields in the panel on the left. Look for the File Upload field in the Fancy Fields section.

Drag and drop the File Upload field, placing it where you’d like to include it in your form on the right.

fancy fields

After adding the File Upload field, click on it to open the Field Options on the left hand panel.

field options

Scroll down to Max File Size and enter the figure you want. Remember that you can’t set a max file upload size higher than what your WordPress site allows. However, you can set a lower size limit specifically for WPFroms if you’d like.

max file size

Changing this setting will also change the max file attachment size for file upload attachments to your form’s email notifications.

The maximum file size for file upload attachments to a WPForms email notification

For more details on file upload attachments, see our email notification file upload attachments documentation.

When you’re done, go ahead and Save your form.

Publish the Form on Your Site

To publish your new form, click on Save at the top right corner of the form builder.

Saving our form

Next, click on Embed to add your form to a page.

form builder embed button

This will open up a modal asking if you want to publish the form on an existing page or if you want to create a new page. In this example, let’s embed the form in a new page.

Select the Create New Page button to continue.

Creating a new page to embed your form on

Enter a title for your new page and press Let’s Go.

Embed in a new page

You’ll now be redirected to your WordPress page edit screen with your form already embedded in it.

This is a good chance to take a look at your page, edit or add any other elements if needed, and publish the page when you’re ready.

publish the form

After the form is live, you can go ahead and check it out. Here’s what the form we built in this tutorial looks like from the frontend:

file upload form frontend

As you can see, we have a form with a file upload field that allows users to upload a file from their computer.

If a user uploads a file that is larger than the limit we defined, WPForms will refuse to upload and give an error:

wpforms max file size exceeded

On the other hand, visitors will have no problems uploading supported file types that are under the specified size limit:

wpforms file upload success

That’s pretty much it! Now you know how to increase the max file upload size in WordPress!

Next, Explore the Top File Upload Plugins

We’ve just shown you one way to allow users to upload files to your WordPress website. you might be interested in learning how to do similar things using other WordPress plugins.

Our guide to the best WordPress file upload plugins will have you covered!

Create Your WordPress Form Now

Ready to start building WordPress forms? Get started with the easiest-to-use WordPress form builder plugin today. WPForms Pro includes a free file upload feature and free file upload form and offers a 14-day money-back guarantee.

And don’t forget, if you like this article, then please follow us on Facebook and Twitter.

Using WordPress and want to get WPForms for free?

Enter the URL to your WordPress website to install.

Comments

  1. Method 1 does not work because unless you pay for the “pro” version of WPCode – the free version is now crippled to the point of being useless.

    Method 2 does not work at all.

    What works is to add these 4 lines to your .htaccess file:
    php_value upload_max_filesize 256M
    php_value post_max_size 256M
    php_value max_execution_time 300
    php_value max_input_time 300

    1. Hey Manfred – I did some tests and it should work just fine unless there could be some restrictions from your host provider when modifying the PHP variables. For that, we recommend getting in touch with your host support.
      If it persists, we are happy to test this on your site, and in order to do so, in order to make sure we answer your question as thoroughly as possible and avoid any confusion, could you please contact our team by submitting a support ticket here.
      Thanks.

    1. Hey Adrian – It should work just fine unless there are some restrictions from your host provider when modifying the PHP variables.

      If you are still facing this after checking with your host, we are happy to test this on your site, and in order to do so, and avoid any confusion, could you please contact our team by submitting a support ticket here.

      Thanks.

Add a Comment Cancel reply

We're glad you have chosen to leave a comment. Please keep in mind that all comments are moderated according to our privacy policy, and all links are nofollow. Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

This form is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.