Questions tagged [resume-download]

Tag for questions regarding resuming an interrrupted download - for example, using HTTP Range and Content-range headers.

Tag for questions regarding resuming an interrrupted download - for example, using HTTP Range and Content-range headers.

74 questions
0
votes
2 answers

How to resume interrupted download of specific part of file automatically in curl?

I'm working with curl in Linux. I'm downloading a part of a file from Media-fire using bad internet connection , the download always stops after few minutes and when i use the parameter -C - instead of continue downloading only the part of a file i…
Akrãm Kün
  • 128
  • 8
0
votes
1 answer

ASIHttpRequest resume Downloading

I've got question that similiar to this post ASIHTTP asynchrounous pdf download I am going to resume download using setTemporaryFileDownloadPath: but the weird thing is when I called setDelegate to self and start the connection asynchronously, the…
Lunayo
  • 538
  • 7
  • 32
0
votes
1 answer

Download file using Azure Storage with resume download

I want to resumable a file download from the Azure server. I've tried with many third-party libraries. i.e PRDownloader, Fetch but Azure file is restart download while network issue OR any. Referred c# code var blobRequestOptions = new…
Komal
  • 79
  • 1
  • 10
0
votes
0 answers

Servlet: Make a download resummable

I am creating a servlet that makes files to client downloadable. I achieved this but not able to make that resumable downloads to the client. Here is my code private void startDownloadProcess(File file) { this.response.addHeader("Accept-Ranges",…
Chirag
  • 555
  • 1
  • 5
  • 20
0
votes
1 answer

Cannot resume downloads bigger than 300M

I am working on a program with php to download files. the script request is like: http://localhost/download.php?file=abc.zip I use some script mentioned in Resumable downloads when using PHP to send the file? it definitely works for files under…
StevenWang
  • 3,625
  • 4
  • 30
  • 40
0
votes
0 answers

How to mark unsuccessful download?

When I'm trying to download a file say of some 900 MB and when I pause download and retry after some time (say hours). Chrome instead of resuming the download just marks the file as completed. public HttpURLConnection getConnection(String url,…
user7665040
0
votes
0 answers

PHP Remote download file from server with resume capability

I have user can download file from other server/URL. This is sample code but resumable download not work and when try download begin from start
Parsa
  • 596
  • 1
  • 5
  • 15
0
votes
1 answer

How to resume a download when the request contains POST data?

I have a php file which generate a file to be downloaded using POST parameters. I already have everything working to resume file downloading (using Range header and everything related). However, if I pause the download and then try to resume it, the…
Lynesth
  • 81
  • 6
0
votes
1 answer

Installer Stub for large file

We've got a large program to install (1Gb) packaged into an installer already. Is there any easy way to use a download manager to ensure that our clients can download without any issues. I was thinking a simple stub that just downloads the file then…
Bruce Aldridge
  • 2,907
  • 3
  • 23
  • 30
0
votes
1 answer

AFNetworking 2.0 How to resume a cancelled download

I'm rewriting the network code of my app to AFNetworking 2.0 using the AFHTTPSessionManager as base class. I want to reimplement my current download implementation but I'm failing to reimplement my old behaviour. Current implementation: Download a…
Noroxs
  • 115
  • 10
0
votes
1 answer

Resuming File Downloads in Ruby on Rails

Finally found out how to achieve this! Turned out it is as simple as enabling xsendfile and setting header parameter Accept-Range Read my answer below (by the way, in the block quote below I wrote a common pitfall newbies - like I did - made. We…
jaycode
  • 2,926
  • 5
  • 35
  • 71
0
votes
1 answer

Is it possible to download YouTube video links through PHP with resumable?

Is it possible to download youtube video links through php with resumable. I can easily fetch the download links through youtube-dl. In PHP resumable, it needs to be known the size of the video. But from the link i can't fetch out the size, so is it…
Jaki
  • 83
  • 8
0
votes
1 answer

blackberry java media file is distorted when download is resumed

I'm developing a blackberry app and I AM having an issue while resuming a download. The code works well if the download isn't interrupted, but if it is interrupted and the download is re-started, the media file is distorted. To allow resuming of…
Nuel
  • 31
  • 1
  • 8
0
votes
0 answers

PHP Download remote file to client with bandwidth counter

I have a code for download.php remote file: function _downloadIt($url,$size,$filename,$user='',$pass='',$cookie='') { $filesize = $size; $filename = $filename; $directlink = $url; $link = $directlink; $link = str_replace("…
0
votes
1 answer

resumable download script lock page issue-- php+IIS7

I have a resumable download php script. It works fine on Apache server but not on IIS 7 ( which my client currently use) The problem with IIS is: When downloading file,other page at same site will freeze. (even display 500 server error sometimes)…
Yuan Shen
  • 79
  • 1
  • 3