Ever struggled with large file upload in PHP? Wondered if you could continue uploading where you left off without re-uploading whole data again in case of any interruptions? If this sounds familiar to you, then keep reading. Photo by on rawpixel.com Unsplash File upload is a common task we do in almost all of our modern web projects. With all different tools available, it is not that hard to implement file upload feature in any language. But, still, when it comes to large file upload things gets a bit complicated. Say, you are trying to upload a fairly large file. You have been waiting for more than an hour already and the upload is at 90%. Then suddenly, your connection drops or browser crashed. The upload is aborted and you need to start from the beginning. Frustrating, isn’t it? Even worse, if you are in a slow connection, like many places in the world, no matter how often you try you will only be able to upload first part of the upload every time. In this post, we will see an attempt to solve this problem in by uploading files in resumable chunks using tus protocol. PHP Resumable File Upload in PHP — Demo What is tus? Tus is a HTTP based . Resumable means we can carry on where we left off without re-uploading whole data again in case of any interruptions. An interruption may happen willingly if the user wants to pause, or by accident in case of a network issue or server outage. open protocol for resumable file uploads Tus protocol was in May 2017. adopted by Vimeo Why tus? Quoting from : Vimeo’s blog We decided to use tus in our upload stack because the tus protocol standardizes the process of uploading files in a concise and open manner. This standardization will allow API developers to focus more on their application-specific code, and less on the upload process itself. Another main benefit of uploading a file this way is that you can start uploading from a laptop and even continue uploading the same file from your mobile or any other device. This is a great way to enhance your user experience. Pic: Basic Tus Architecture Getting Started Let’s start by adding our dependency. $ composer require ankitpokhrel/tus-php is a framework agnostic pure PHP for the tus resumable upload protocol v1.0.0. tus-php server and client implementation _tus-php - 🚀 A pure PHP server and client for the tus resumable upload protocol v1.0.0_github.com ankitpokhrel/tus-php : Vimeo is now using in of their . Update TusPHP v3 Official PHP library for the Vimeo API Creating a server to handle our requests This is how a simple server looks like. // server.php $server = new \TusPhp\Tus\Server('redis');$response = $server->serve(); $response->send(); exit(0); // Exit from current PHP process. You need to configure your server to respond to a specific endpoint. For example, in Nginx, you would do something like this: # nginx.conf location /files {try_files $uri $uri/ /path/to/server.php?$query_string;} Let’s assume that the URL to our server is So, based on above nginx configuration we can access our tus endpoints using . http://server.tus.local http://server.tus.local/files. Now, we have following RESTful endpoints available to work with. # Gather information about server's current configurationOPTIONS /files # Check if the given upload is validHEAD /files/{upload-key} # Create a new uploadPOST /files # Resume upload created with POSTPATCH /files/{upload-key} # Delete the previous uploadDELETE /files/{upload-key} Check out the for more info about the endpoints. protocol details If you are using any frameworks like Laravel, instead of modifying your server config, you can define routes to all tus based endpoints in your route file. We will cover this in detail in another tutorial. framework Handling upload using tus-php client Once the server is in place, the client can be used to upload a file in chunks. Let us start by creating a simple HTML form to get input from the user. <form action="upload.php" method="post" enctype="multipart/form-data"><input type="file" name="tus_file" id="tus-file" /><input type="submit" value="Upload" /></form> After a form is submitted, we need to follow few steps to handle the upload. Create a tus-php client object // Tus client $client = new \TusPhp\Tus\Client('http://server.tus.local'); The first parameter in the above code is your tus server endpoint. 2. Initialize client with file metadata To keep an upload unique, we need to use some identifier to recognize the upload in upcoming requests. For this, we will have to generate a unique upload key which can be used to resume the upload later. You can either explicitly provide an upload key or let the system generate a key by itself. // Set upload key and file meta $client->setKey($uploadKey)->file($_FILES['tus_file']['tmp_name'], 'your file name'); If you don’t provide upload key explicitly, above step will be something like this: $client->file($_FILES['tus_file']['tmp_name'], 'your file name'); $uploadKey = $client->getKey(); // Unique upload key 3. Upload a chunk // $chunkSize is size in bytes, i.e. 5000000 for 5 MB $bytesUploaded = $client->upload($chunkSize); Next time, when you want to upload another chunk you can use same upload key to continue. // To resume upload in next request $bytesUploaded = $client->setKey($uploadKey)->upload($chunkSize); Once the upload is complete, the server verifies upload against the checksum to make sure the uploaded file is not corrupt. The server will use algorithm by default to verify the upload. sha256 The full implementation of the demo video above can be found . here Handling upload using tus-js-client is a sleek, modular file uploader plugin developed by same folks behind tus protocol. You can use uppy to seamlessly integrate official with a server. That means we are using php implementation of a server and js implementation of a client. Uppy tus-js-client tus-php uppy.use(Tus, {endpoint: 'https://server.tus.local/files/', // your tus endpointresume: true,autoRetry: true,retryDelays: [0, 1000, 3000, 5000]}) Check out more details in and example implementation . uppy docs here Partial Uploads The Server supports and is capable of concatenating multiple uploads into a single one enabling clients to perform parallel uploads and to upload non-contiguous chunks. tus-php concatenation extension The full example of partial uploads can be found . here Final Words The itself is still in its initial stage. Some sections might change in the future. Three different implementation examples can be found in the folder. Feel free to try and report any issues found. Pull requests and project recommendations are more than welcome. tus-php project example Happy Coding!