Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
9answers
7k views

Resumable downloads when using PHP to send the file?

We are using a PHP scripting for tunneling file downloads, since we don't want to expose the absolute path of downloadable file: header("Content-Type: $ctype"); header("Content-Length: " . ...
2
votes
0answers
75 views

How is the resumable Youtube uploader working?

Any idea how the youtube video uploader works? The interesting feature here is that you can resume a broken upload-process (e.g. when you close the browser or your internet connection is lost ...
1
vote
1answer
287 views

nginx resumable upload with upload_module and multipart/form

I currently upload to a webservice on an nginx server using the upload module (http://www.grid.net.ru/nginx/upload.en.html) from a custom desktop application doing a simple multipart-form POST that ...
0
votes
1answer
127 views

php download problem

howdy: I am working on a program with php to download files. the script request is like: http://127.0/download.php?file=abc.zip I use some script mentioned in link text it definitely works for files ...
0
votes
1answer
503 views

Resumable Upload in Ruby on Rails

I am looking for a resumable-file-upload component to use in my RoR app. I found one: http://github.com/taf2/resume-up/tree/master (built in native Ruby, but it requires google gears which is a ...