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”