How to Fix The Uploaded File Exceeds the upload_max_filesize Directive in php.ini. Error in WordPress

May 8, 2019

Introduction

The  Uploaded file exceeds the upload_max_filesize directive in php.ini error in WordPress, occurs when uploading large files, themes, or images. The issue is the result of a server-side setting that limits file sizes.

This guide provides six (6) solutions on how to adjust the appropriate parameters and resolve the file size error.

Introductoru image with WordPress logo and file icon.

Prerequisites

  • A working WordPress installation
  • Access to the server that hosts the WordPress installation (local or SSH)
  • If you are working from a client system, a file manager (or cPanel)
  • A user account with sudo privileges
  • Access to a command-line/terminal window (optional)

6 Ways to Fix Uploaded File Exceeds upload_max_filesize error in WordPress

Use the WordPress dashboard to check your current maximum upload file size. Select the  Media > Add New option, as shown in the image below.

Image is an example of where to find the maximum file limit within your WordPress dashboard.

In this example, the maximum file size is limited to 232 MB. It is not possible to change this setting using WordPress. We provided 6 simple solutions on how to configure maximum file size on your server.

Option 1: Edit the .htaccess File (cPanel)

1. Open cPanel and launch the file manager.

2. Right-click the .htaccess file, then click edit.

Note: If you are not able to locate the .htaccess file, you may need to click Settings in the upper-right corner and check the box to show hidden files.

3. Explore the file and find the line php_value upload_max_filesize. Edit the line to look as follows:

php_value_upload_max_filesize 256M

This instruction changes the server-side limit on the size of the file you’re allowed to upload to 256 MB.

4. Save the changes and exit the file.

Option 2: Edit the .htaccess File using Command Line Interface

1. Access the server that hosts your WordPress site.

2. Enter the following command in your Command Line Interface to access the WordPress directory:

cd /path/to/wordpress

Note: The /path/to/wordpress is an example. You need to enter the correct path to your WordPress directory.

3. Open the .htaccess file with a text editor of your choice. In this example, we used the nano text editor:

sudo nano .htaccess

4. Explore the file and find the line php_value upload_max_filesize. Edit the line and define the size you need:

php_value_upload_max_filesize 256M

This instruction changes the server-side limit on the size of the file you are allowed to upload to 256 MB.

5. Save the changes and exit the file.

Option 3: Editing wp-config.php File

This method changes the limits on the PHP file size by editing the wp-config.php file directly:

1. Access the public_html folder using cPanel.

2. Find the wp-config.php file. Right-click the file and select the edit option.

edit wp-config file window

Scroll nearly to the end of the file and find for the following comment line:

/* That’s all, stop editing! Happy blogging. */

3. Add the following code just above that line:

@ini_set('upload_max_size' , '256M' );

4. Save the file and exit. Try to upload your file again.

Option 4: Edit the wp-config.php File from Command Line Interface

1. Access the server that hosts your WordPress site.

2. Enter the following command and access the WordPress directory:

cd /path/to/wordpress

3. Open the wp-config.php file with a text editor of your choice.

sudo nano wp-config.php

4. Find for the following comment line:

/* That’s all, stop editing! Happy blogging. */

Displays the location of the line that needs to be added to the wp-config file to increase max upload size.

5. Add the following line just above:

@ini_set('upload_max_size' , '256M' );

6. Save the file and exit.

Option 5: Edit php.ini File

The php.ini file is a configuration file for PHP variables. The following steps show you how to edit the php.ini file:

1. Log into your server hosting the WordPress site.

2. Access the Command Line Interface, and enter the following:

cd /etc/php/7.0/cli

Note: If you’re running a different version of PHP, make sure to replace 7.0 with the version you are currently using.

3. Use a text editor to open the php.ini file:

sudo nano php.ini

4. Locate the following line:

upload_max_filesize = 100M

5. Replace 100M with a higher value in megabytes. (256 MB for example)

Image shows the location of the line that needs to be edited to increase limit.

This file allows you to configure other settings as well:

  • memory_limit 256M – Sets the max amount of memory a script can use.
  • post_max_size 32M – Sets the max size for the total of the POST body data.
  • max_execution_time 600 – Max time, in seconds, that a script is allowed to run.
  • max_input_time 900 – Max time, in seconds, that a script is allowed to parse input data.

6. Save the file and exit.

Test your file upload in WordPress – the issue with file size is now resolved.

Option 6: Contact Host’s Support

It is not uncommon for hosting companies to set limitations on the settings clients can edit themselves. Depending on your particular hosting company, you might not be able to perform some of the actions described in the previous steps.

In those cases, it might be necessary to contact your host’s support services. Most hosts perform this type of configuration as part of their standard service.

Conclusion

Now you know how to fix the error “The uploaded file exceeds the upload_max_filesize directive in php.ini.” in WordPress. This tutorial covered 6 different methods to increase the maximum file upload size.

Regardless of the chosen method, by following these simple instructions, you are now able to define the maximum file size when uploading files to your website.

Was this article helpful?
YesNo
Vladimir Kaplarevic
Vladimir is a resident Tech Writer at phoenixNAP. He has more than 7 years of experience in implementing e-commerce and online payment solutions with various global IT services providers. His articles aim to instill a passion for innovative technologies in others by providing practical advice and using an engaging writing style.
Next you should read
How to Fix "Your PHP installation appears to be missing the MySQL extension which is required by WordPress"
March 14, 2024

The "Your PHP installation appears to be missing the MySQL extension" error can occur in WordPress when...
Read more
PHP Error Reporting: How to Enable & Display All Errors / Warnings
August 6, 2019

If a script is not written correctly, or if something unusual happens, PHP can generate an error message.
Read more
How To Install PHP 7, 7.2 & 7.3 On CentOS 7
May 24, 2019

PHP is a programming language that's often used to automate server tasks. It's part of the LAMP...
Read more
How To Install PHP On Ubuntu 20.04 or 22.04
November 24, 2022

PHP is a script-based server-side programming language. PHP is often used to automate server tasks and is the...
Read more