Can I upload file more than 2gb size in 32bit browser using HTML5 or not ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s very unlikely that you can upload a file that big via HTTP. Not only is unlikely that you can, it is also a terrible idea because before the server saves the file to disk, it will read the entire content in memory and chances are that something else will happen before it gets to write to disk (it’ll run out of memory, for example).
If you want to upload a file like this, use sftp.