How can I upload large files in chunks, chunks?

I have a small file sharing web page. He can use it. I would like to upload files between 0mb and 1GB. I've been searching on Google since two days, but I can't find anything I need ...

My webpage is: http://boxy.tigyisolutions.hu However, I can only download 20-30mb now. I would like to only download 1 file at a time. But it could be more than 500-600mb ... Can anyone help me?

I tried jquery fileupload but it didn't download anything for me.

+3


source to share


1 answer


The Blob.slice method allows you to split the client side of a file into chunks. Then you must send each piece separately. This will only work in browsers that support the File API.



If you don't want to write this code yourself, Fine Uploader is a downloadable javascript library that has the ability to block files for you and send them to your server.

+1


source







All Articles