Reputation: 16339
What is the maximum file upload size with xmlhttprequest level 2 with HTML5?
Upvotes: 3
Views: 9500
Reputation: 348992
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:
Upvotes: 8