This brief tutorial shows students and new users how to resolve a common error with WordPress when trying to upload files, media and other data and get shown an error the says “413 Request Entity Too Large” via Apache2 HTTP server.
This error, 413 request entity too large occurs when you try to upload or make a client request that is too large to be processed by the web server, in the case a Apache2 HTTP server.
If the server setting has a request size limit that is too small, your users / clients may come across this error a lot. So you will probably want to adjust the web server settings to allow larger requests.
WordPress allows users to upload new themes and plugins files, however, if your Apache2 powered website isn’t configured to allow large file to be uploaded, the upload process will fail always.
Some common errors user get when dealing with file uploads with WordPress are: Http error attempting to upload media, the uploaded file exceeds the upload_max_filesize directive in php.ini, maximum execution time exceeded, allowed memory size exhausted and many more.
Before continuing with the steps below, please make sure to backup your system.
Step 1: Configure WordPress Directory Permissions
First, make sure the directory WordPress is running in has the correct permission for Apache2 webserver to operate. On Ubuntu systems, the root directory is almost always at /var/www/html.
So, run the commands below give Apache2 web server full access to that directory.
sudo chown -R www-data:www-data /var/www/html/ sudo chmod -R 755 /var/www/html/
Step 2: Adjust PHP-FPM Settings
Next, adjust PHP-FPM settings to allow larger file uploads. By default, PHP-FPM is only allowed to uploaded a certain file size. so there’s a limit. Adjust the file upload size limit and other directives in PHP-FPM.
On Ubuntu 18.04 and up, the default PHP-FPM configuration file are stored in the the file below:
/etc/php/7.2/apache2/php.ini
The x in the line above can either be a 0 or 1, 2, 3 or 4
So, open PHP-FPM configuration file by running the commands below and adjust the settings to suit your environment.
sudo nano /etc/php/7.2/apache2/php.ini
Then scroll down the file line by line and adjust each directive with the value below:
memory_limit = 256M
post_max_size = 32M
upload_max_filesize = 100M
file_uploads = On
max_execution_time = 600
max_input_time = 600
Save your changes.
If the file size you’re uploading is greater than 100MB, then adjust the upload_max_filesize to be greater than the file size.
Step 3: Adjust Apache2 Configuration
Apache2 also has its own limit definitions.
If you don’t define the size limit in Apache2 configuration, whatever you do in the PHP configuration file may not apply to Apache2. To allow Apache2 to also upload larger file, open Apache2 configuration and add the values as defined below:
On Ubuntu systems, Apache2 default site configuration files are stored at /etc/apache2/apache2.conf
Open the configuration file and add the highlighted line, then save.
sudo nano /etc/apache2/apache2.conf
Add the line, then save.
#
Timeout 300
#
LimitRequestBody 104857600
#
KeepAlive On
#
MaxKeepAliveRequests 100
#
KeepAliveTimeout 5
#
HostnameLookups Off
Save the file and continue
Finally, restart Apache2, which will also reload PHP configurations for the new settings to take effect
sudo systemctl reload apache2.serive
This should do it. Now go and try to upload the file you want with the size smaller than 100MB
Enjoy~
You may also like the post below: