Upload and download directly - no waiting

I would like to program something where you download the file from one side and the other can download it at the time of download. I knew such a service, but I do not remember the name. If you know a service that I would like to know, if it is no longer there, I would program it as an open source project.

And it should be a website

+1


source to share


3 answers


What you are describing is very similar to Bit Torrent.



+1


source


You might be able to achieve this by loading it through a native ISAPI filter (if you are using IIS) - all CGI implementations will not start running your script until the request is complete, which makes sense since you haven’t given all the values ​​yet. I would suggest that ISAPI might be wrong too.



So, your next best bet is to write a custom HTTP server that can handle serving files even before the download is complete.

+1


source


pipebytes.com I found this :)

+1


source







All Articles