What is the maximum file upload size with xmlhttprequest level 2 with HTML5?
The XMLHttpRequest specification does not mention any limits on the upload size.
In practise, upload requests are limited by:
LimitRequestBody
on Apache, client_max_body_size
on Nginx.upload_max_filesize
and post_max_size
in PHP.See also: