Im trying to upload faster. My connection upload limit is ~2Mbit and upload speed is ~200Kb. When i try to upload 10Mb file, it finished ~50 secs. I want to do faster.
Is there any method like that multi part file uploading. For example process:
- Select file (10000Kb)
- Submit form
- Split into pieces the file (100kb x 100 pieces)
- Upload them all at once
- Merge pieces and save the file
This upload method is possible? I read about Content-Range
and Chunked file uploads
but i did not know exactly where to look.
Is that may guide me in this regard? Or does anyone know of an alternative fast upload method?