Reputation: 22561
I'm wondering if there's a way to create a upload handler that can upload the file chunk by chunk manually (not automatic php file uploader)
Upvotes: 1
Views: 1568
Reputation: 20016
For a pure PHP solution, you could read the file in chunks and send it back to the server using cURL.
Upvotes: 0
Reputation: 1857
You need something at client side, something that would split your file into chunks, send over HTTP to the server, receive responses and handle them. This is usually achieved with Flash and Java, the latter of which is more preferred method, as Java has richer library that can handle files... jumpLoader would be a good choice for this...
Upvotes: 1