Fatal Error
File: .../src/Application/Responses/FileResponse.php:127
117: $length = $end - $start + 1; 118: fseek($handle, $start); 119: 120: } else { 121: $httpResponse->setHeader('Content-Range', 'bytes 0-' . ($filesize - 1) . '/' . $filesize); 122: } 123: } 124: 125: $httpResponse->setHeader('Content-Length', $length); 126: while (!feof($handle) && $length > 0) { 127: echo $s = fread($handle, min(4e6, $length)); 128: $length -= strlen($s); 129: } 130: fclose($handle); 131: }