Request Entity Too Large

Error :

Request Entity Too Large
The requested resource
/send.php
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit. 01
3006

Solution :
This error due the variables_order used on the server. The default variables_order used on the cpanel server is “EGPCS”. If you want to use the POST requests then you need to set it to “POST”
To solve this error open the php.ini file and search variables_order

variables_order = “EGPCS”

Replace it to

variables_order = “POST”

Done

3 Thoughts to “Request Entity Too Large”

  1. Thanks for some quality points there. I am kind of new to online , so I printed this off to put in my file, any better way to go about keeping track of it then printing?

  2. Sammy

    The HTTP server may add further restrictions on the file upload size:
    Apache: You can restrict maximum file size using [LimitRequestBody] directive. Search for /etc/httpd/conf.d/php.conf and comment out LimitRequestBody. Restart Apache after editing the configuration and you will be able to attach file with sizes over 0,5 MB again.
    e.g:
    SetOutputFilter PHP
    SetInputFilter PHP
    # LimitRequestBody 524288

Leave a Comment