VLT-Website-Heading

413 Request Entity Too Large error?

Oct 29, 2019 3:28:42 PM / by Vu Long Tran

Did you just receive the error "413: Request Entity Too Large” on Wordpress instance?

This is my brief guide to let you know what it means and how to resolve the issue.

My setup is using Wordpress by Bitnami hosted on the Google Cloud Platform, but it should work on any Wordpress set up that you have hosted on your own servers.

Why have you just received the error: "413: Request Entity Too Large” on Wordpress?

Main reason: Your nginx web server has a limit on uploads by default, so you need to increase the default limits.

In more detail, it indicates that your web server configured to restrict large file size. Your nginx web server can be set to allow the maximum size of the client request body using client_max_body_size directive.

413 Request Entity Too Large error message
413 Request Entity Too Large error message

If the size of a request exceeds the configured value, the 413 (Request Entity Too Large) error message returned.

As these are the defaults for an ngnix server:

Source: https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size

I received this when I was recently migrating a backup of Wordpress onto a new instance/ set up of Wordpress. So the file sizes we were looking at were bigger than the default settings in place.

So naturally, we just need to increase these limits.

How do you manage the "413: Request Entity Too Large” error?

This is for a Nginx web server configuration, to fix this issue edit your nginx.conf.

To do so on Google Cloud Platform:

Step 1 - Login to the remote server using SSH client

Step 2 - Open the ngnix.conf file to edit using a text editor

You will want to open and edit your ngnix config file using a text editor. I am using nano editor to edit this:

$ sudo nano /etc/nginx/nginx-app.conf

You can also use vi editor or vim editor, using the word "vi" or "vim" instead of "nano", such as the following:

$ sudo vi /etc/nginx/nginx-app.conf
$ sudo vim /etc/nginx/nginx-app.conf

If you're using Bitnami Wordpress, this file is stored at: /opt/bitnami/apps/wordpress/conf/nginx-app.conf.

Type the following command to edit your nginx.conf using a text editor:

You're looking for the client_max_body_size parameter of the ngnix configuration (more information at https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size). By default, that's set to 1MB so, in order to change that, edit your configuration file.

$ sudo nano /opt/bitnami/apps/wordpress/conf/nginx-app.conf

Add the following line to http or server or location context to increase the size limit in nginx.conf, enter:

$ client_max_body_size 8M;

Example of adding this to the top of your nginx-app.conf using nano editor

Then press: Control + O to "Write Out" (save the changes), which will tell the server to save the settings.

Step 3 - Reload the nginx webserver

Restart your ngnix web server:

$ sudo /opt/bitnami/ctlscript.sh restart nginx
(if needed) $ sudo /opt/bitnami/ctlscript.sh start nginx

Example commands in the SSH command line

You should receive and see something like this:

Unmonitored nginx<br> /opt/bitnami/nginx/scripts/ctl.sh : Nginx stopped<br> /opt/bitnami/nginx/scripts/ctl.sh : Nginx started<br> Monitored nginx

Then you can confirm that your ngnix web server is back up and running here with:

$ sudo /opt/bitnami/ctlscript.sh status

Nginx already running

php-fpm already running

mysql already running

STEP 4- Upload the file again

Try uploading the file again that gave you the "413: request entity too large" error. You should no longer see the error message.

Hopefully that helps you to get this working this time round!

Topics: web development, wordpress, google cloud

Vu Long Tran

Written by Vu Long Tran

Solutions Engineer APAC. ex-@Forrester consultant. Writing on #cloud #howto guides and #tech tinkering!