Is there a maximum size for content of an HTTP POST?

Solution 1:

The HTTP specification doesn't impose a specific size limit for posts. They will usually be limited by either the web server or the programming technology used to process the form submission.

Solution 2:

No limit by specification. The limit is MIN(browser_limit,server_limit).


Solution 3:

POST method does not have any limit on the size of data. But Server & Browsers has.

For Example

IE: 2GB
Firefox: 2GB
Chrome: 4 GB
Opera: 4 GB

For More Details check below URL
https://www.motobit.com/help/scptutl/pa98.htm


Solution 4:

I don't think that there is a specific limit in the protocol, BUT there are cases where things get squirrelly if you're transferring huge files. It depends on the size of the file as to what may work a little better for your specific case. There's not any support for checking that the file wasn't corrupted in transfer, for example, unlike using something like a torrent for the transfer.

Tags:

Http