If you upload a lot of files to your WordPress site you may have seen this error while uploading “exceeds the maximum upload size for this site”. Especially if you are uploading large PDFs or video files.

Many WordPress hosts set this limit low by default. So if you are unable to upload files since they are too large I’ll be showing you how to increase the WordPress maximum upload file size in this post.

How to Check Your Maximum File Upload Size Limit in WordPress?

First you’ll probably want to know your site’s current maximum file upload size limit. This can be done by going to Media>add new. On the media upload page you’ll see your sites current maximum upload file size.

view-max-file-upload-size-wordpress

Now that you know your site’s limit let’s increase it!

How to Increase Max Upload Size in WordPress with a Plugin

The easiest way to increase the max file upload size in WordPress is to use the Tuxedo Big File Uploads plugin. This plugin lets you change the max upload size on your WordPress site without code.

Using this plugin is as simple as installing the plugin then changing its settings. This can easily be done by going to  Plugins/Add new and searching “Tuxedo”.

installing-tuxedo-big-file-uploads-768x231

After this is installed and activated you’ll have a new options under  Settings/Media here you’ll be able to set your max file size.

tuxedo-big-file-uploads-options

 

Here you can set the max file size to whatever you’d like. I recommend only setting it to what you need and not leaving it as unlimited. In this example I set the max file size to 512mb.

How to Increase Max Upload Size in WordPress with Function.php

 

ou can try increasing your server’s max upload size with this PHP code snippet in your site theme’s function.php file. Note that this may not work depending on how your site’s server is configured.

<?php

@ini_set( ‘upload_max_size’ , ‘512M’ );

@ini_set( ‘post_max_size’, ‘512M’);

@ini_set( ‘max_execution_time’, ‘300’ );

If this code snippet doesn’t work you I recommend reaching out to your web host for assistance.

Written by