ankitpokhrel / tus-php

🚀 A pure PHP server and client for the tus resumable upload protocol v1.0.0

Home Page:https://tus.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Continue file upload from different browser and device

rajpt opened this issue · comments

I have successfully implemented uppy(tus-js-client) and tus-php, it works great and so impressed with the resumable functionality.

Other day i was testing:

  1. Start upload on my iMAC using google chrome for file my-upload-audio.mp3
  2. Pause the upload
  3. User my MACBOOK PRO use Firefox and select the same file my-upload-audio.mp3 to upload
  4. Upload started but did not resume where it was paused on my iMAC

Not sure is it even possible to achieve what i am trying to do with current implementation? If so please provide some directions how to implement it?

Otherwise would be good to add this feature.

Thank you

The default implementation stores the upload urls using Web Storage API (when run in the browser). But you can implement an interface to share urls between browsers (e.g. by using web service).

This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.

Closing because of inactivity.