Linode.com Forum Forum Index Linode.com Forum
Linode Community Forums
 


413 Request Entity to Large, NOT php.ini

Click here to go to the original topic

 
       Linode.com Forum Forum Index -> Linux, Apache, Mysql and PHP (LAMP) Forum
Author Message
zip



Joined: 04 Nov 2003
Posts: 6
Location: San Antonio, TX

Posted: Tue Nov 04, 2003 3:56 pm    Post subject: 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.
Back to top  
caker



Joined: 15 Apr 2003
Posts: 2386
Location: Galloway, NJ

Posted: Tue Nov 04, 2003 5:39 pm    Post subject:  

Does this help?

http://httpd.apache.org/docs-2.0/mod/core.html#limitrequestbody

Quote: 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
Back to top  
zip



Joined: 04 Nov 2003
Posts: 6
Location: San Antonio, TX

Posted: Wed Nov 05, 2003 9:49 am    Post subject: Yea  

root@localhost conf # grep -r LimitRequest *
modules.d/70_mod_php.conf: LimitRequestBody 524288
modules.d/70_mod_php.conf: LimitRequestBody 524288
modules.d/70_mod_php.conf: LimitRequestBody 524288
modules.d/70_mod_php.conf: LimitRequestBody 524288
modules.d/70_mod_php.conf: LimitRequestBody 524288

That is probably it, thanks.
Back to top  
 
       Linode.com Forum Forum Index -> Linux, Apache, Mysql and PHP (LAMP) Forum
Page 1 of 1