PDA

View Full Version : How do you enable resume support for downloads on your hosting?



bk.ru
27-01-2007, 07:59 PM
If you have a server that has a bunch of large files on it, but when people download from it it does not allow resume support... where/how would you change that?

texo
27-01-2007, 11:24 PM
http or ftp downloads?

bk.ru
27-01-2007, 11:26 PM
http

texo
27-01-2007, 11:43 PM
If you're running apache: apache is an http server, not ftp server (although it "appears" to work like an ftp server over the web). Thus it cannot resume downloads: each connection is "new".

I'd recommend using proftpd (if you're on a *nix platform) and serve the files via ftp. Of course, if your users are noobs, getting them to use a ftp proggie probably won't work very well.

pip
29-01-2007, 07:57 AM
Strange question. Most web servers support partial content these days, and I do not recall using HTTP to an Apache server that did not support partial content. Maybe your problem is at the client end. Why not try a downloader like ReGet and see if it opens multiple connections - if so, the server is fine and your client program is the problem.