- This topic has 4 replies, 1 voice, and was last updated 2 months, 1 week ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Whats the easiest way of chunk uploading an mp4 in PHP without using a framework.?
[tus](https://tus.io/) is an open resumable file upload protocol. In my opinion this is the most mature protocol which supports chunked upload. The community created a [PHP implementation](https://github.com/ankitpokhrel/tus-php) for it. You can use the server implementation without any framework.
I use [Dropzone](https://www.dropzonejs.com) for chunked uploading of files and it works well and doesn’t require any frameworks.
I’ve used plupload for years with no issue, but I think the project is dead and not maintained anymore. Having done some research a while back I’d probably pick dropzone if I was starting afresh today.
Sometimes, rephrasing the question helps too…
> Whats the easiest way of chunk uploading [a large binary file] in PHP without using a framework?