2015-07-22 106 views
0

我使用這個腳本來下載php文件。
Here是我複製腳本的原始源代碼。php下載失敗在下載

if(file_exists($path)){ 
     $file_size = filesize($path); 
     $file = fopen($path,"rb"); 
     $chunksize = 2*1024*1024; // how many bytes per chunk 
     if($file){ 
      header("Content-Description: File Transfer"); 
      header("Pragma: public"); 
      header("Expires: 0"); 
      header("Cache-Control: public, must-revalidate, post-check=0, pre-check=0"); 
      header("Content-Disposition: attachment; filename=\"$name.$format\""); 
      header("Content-Type: $mimetype"); 

      //check if http_range is sent by browser (or download manager) 
      if(isset($_SERVER['HTTP_RANGE'])){ 
       list($size_unit, $range_orig) = explode('=', $_SERVER['HTTP_RANGE'], 2); 
       if ($size_unit == 'bytes'){ 
        //multiple ranges could be specified at the same time, but for simplicity only serve the first range 
        //http://tools.ietf.org/id/draft-ietf-http-range-retrieval-00.txt 
        list($range, $extra_ranges) = explode(',', $range_orig, 2); 
       } 
       else{ 
        $range = ''; 
        header('HTTP/1.1 416 Requested Range Not Satisfiable'); 
        exit; 
       } 
      } 
      else{ 
       $range = ''; 
      } 

      //figure out download piece from range (if set) 
      list($seek_start, $seek_end) = explode('-', $range, 2); 

      //set start and end based on range (if set), else set defaults 
      //also check for invalid ranges. 
      $seek_end = (empty($seek_end)) ? ($file_size - 1) : min(abs(intval($seek_end)),($file_size - 1)); 
      $seek_start = (empty($seek_start) || $seek_end < abs(intval($seek_start))) ? 0 : max(abs(intval($seek_start)),0); 

      //Only send partial content header if downloading a piece of the file (IE workaround) 
      if ($seek_start > 0 || $seek_end < ($file_size - 1)){ 
       header('HTTP/1.1 206 Partial Content'); 
       header('Content-Range: bytes '.$seek_start.'-'.$seek_end.'/'.$file_size); 
       header('Content-Length: '.($seek_end - $seek_start + 1)); 
      } 
      else 
       header("Content-Length: $file_size"); 

      header('Accept-Ranges: bytes'); 

      set_time_limit(0); 
      @fseek($file, $seek_start); 

      while(!feof($file)){ 
       print(@fread($file, $chunksize)); 
       ob_flush(); 
       flush(); 
       if (connection_status()!=0){ 
        @fclose($file); 
        exit; 
       } 
      } 
      @fclose($file); 
      exit; 
     } 
     else{ 
      // file couldn't be opened 
      header("HTTP/1.0 500 Internal Server Error"); 
      exit; 
     } 
    } 
    else { 
     // file does not exist 
     header("HTTP/1.0 404 Not Found"); 
     exit; 
    } 

現在,問題所在。
下載大文件(例如g> 20MB)有時下載成功完成。有時會在下載過程中中斷。例如我測試並發現,對於100MB文件,在下載40MB後失敗。 (不是一次,多次)。
在瀏覽器中,似乎文件完全下載。 (Firefox和chrome在下載欄中沒有失敗的文本,但存在「打開包含文件夾」選項)
我的一些網絡連接速度很慢的朋友說,他發生的小問題(少於1 MB )。但我從未體驗過它。 (也許是因爲我的網絡速度不慢)
所以問題是,當一個連接速度慢的人想要下載,在中間,它會打破他。 (我想服務器不發送文件給他了。)
注1:我有兩個頭太:

Connection: Keep-Alive 
Keep-Alive: timeout=5 

這是任何一個例子下載文件誰想要測試一下: https://goo.gl/9flVng
還有一個問題,發送用戶直接下載文件header: location而不是readfile(), fread(), ...是不是更好?

對不起長問題,謝謝你的幫助。

+0

可能值得考慮cdn作爲另一個選項 – Adam

+0

耶,cdn是一個好主意。我還沒有經歷過,似乎我應該測試一下。但關於目前的問題,我的服務器是一個很好的問題。不應該有任何問題。任何關於腳本或服務器配置的想法? 我只知道客戶端和服務器之間的連接拒絕並且不會重新連接。 爲什麼瀏覽器不顯示「失敗」文本? – Saeed

回答

0

您可以嘗試提高腳本的最大執行時間限制,默認情況下它設置爲30秒。將其設置爲0可消除時間限制。

set_time_limit (0) 
+0

謝謝路易斯的幫助。是的,我已經做到了。 你可以在我提供的代碼中看到它。但沒有積極的結果。 任何其他幫助? 我想問題是與服務器或相關的東西,而不是腳本。任何想法? – Saeed