How to Increase Maximum File Upload Size in WordPress Manually

increase maximum file upload size in WordPress

The built-in media players in WordPress make it easy to upload media files into your posts and make it a powerful platform to stream video and audio. However, you may realize that there is a maximum limit for uploads. To know your site’s upload limit, visit Media on your Dashboard and click on Add New. An upload box will appear beneath which you will see “Maximum upload file size”(see picture below). This is the maximum size of files you can upload. By default, this number ranges anywhere from 2MB to 128MB and dictates how big an uploaded file can be. So, if you find that you have a smaller limit, you may want to increase your upload limit to accommodate larger media files. Therefore, we will show you in this article, how you can increase maximum file upload size in WordPress.

increase maximum file upload size in WordPress

Why should you increase maximum file upload size in WordPress?

Most of the times, the maximum file upload size that is pre-specified may already be enough for your needs. However, if you want to upload videos and photographs above that limit, it may act as a barrier. A smaller upload limit is a nuisance while a larger one is something you can live with happily. That is why, even if it isn’t a real necessity, it should be in your favor if you increase the maximum file upload size, anyway.

There are basically three ways to achieve this. Read on to learn how you can do it.

Tweak the Theme Functions File

One way to increase maximum file upload size in WordPress is to modify the theme functions file. Just add the following code in the theme function’s file and your upload limit will increase.

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

Create or Edit an existing php.ini file

Sometimes the first method to increase maximum file upload size in WordPress may not work. If you are on a shared host, a php.ini file will not be visible in your directory. In that case, you can create a file named php.ini and upload it in the root folder. In that file add the following code:

upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300

This method is found to be effective for many users. If it doesn’t work for you, try reducing the size to a lesser number, say, 16 MB.

Try .htaccess

If none of the php.ini solutions worked, the solution to increase maximum file upload size in WordPress may lie in your htaccess file. Before you edit your htaccess file, make sure you have a backup. Changing this can cause an Internal Server Error or a blank white screen, and you can re-upload your original htaccess file to remove it.

Open or create the .htaccess file in the root folder and add 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

Save this back to your server. Then go to Media -> Add New to see if your maximum upload size has taken effect. If there are any problems, upload the backup htaccess file you saved locally.

Multisite Solution

If your website is a WordPress multisite installation and your php.ini is in OK but are still unable to upload large files, you can follow the steps below.

Go to Settings and then click on Network Settings.

Under Upload Settings section, in the Max upload file size, increase the field value to a higher kilobyte value. For an instance, inserting 9000 will increase the upload limit to 9 megabytes (MB).

In conclusion, the above methods are tried and tested by many users across the internet. However, if these methods to increase maximum file upload size in WordPress do not work for you, your last resort may be to contact your local host to do it for you.

Hope this article has been helpful. If you have anything to add to this, please write it in the comments.

 

References:
WPBEGINNER
WordPress.org

1 thought on “How to Increase Maximum File Upload Size in WordPress Manually

Leave a Reply

Your email address will not be published. Required fields are marked *