413 Request Entity to Large, NOT php.ini

When I upload files using php I have problems, if the file is > 500k, I get this error, 413 Request Entity to Large. This is an apache error and max upload size in php.ini is 2mb, I don't know what the problem is.

btw, running gentoo on my linode if it matters.

2 Replies

Linode Staff

Does this help?

http://httpd.apache.org/docs-2.0/mod/co … equestbody">http://httpd.apache.org/docs-2.0/mod/core.html#limitrequestbody

> This directive specifies the number of bytes from 0 (meaning unlimited) to 2147483647 (2GB) that are allowed in a request body.

The LimitRequestBody directive allows the user to set a limit on the allowed size of an HTTP request message body within the context in which the directive is given (server, per-directory, per-file or per-location). If the client request exceeds that limit, the server will return an error response instead of servicing the request. The size of a normal request message body will vary greatly depending on the nature of the resource and the methods allowed on that resource. CGI scripts typically use the message body for retrieving form information. Implementations of the PUT method will require a value at least as large as any representation that the server wishes to accept for that resource.

This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.

If, for example, you are permitting file upload to a particular location, and wish to limit the size of the uploaded file to 100K, you might use the following directive:

-Chris

root@localhost conf # grep -r LimitRequest *

modules.d/70modphp.conf: LimitRequestBody 524288

modules.d/70modphp.conf: LimitRequestBody 524288

modules.d/70modphp.conf: LimitRequestBody 524288

modules.d/70modphp.conf: LimitRequestBody 524288

modules.d/70modphp.conf: LimitRequestBody 524288

That is probably it, thanks.

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct