Bugfix ParseUrl: Only fetch a range to avoid memory issues

This commit is contained in:
Michael 2017-05-23 05:26:22 +00:00
parent bd62f10697
commit c84a2fb1a3
1 changed files with 6 additions and 0 deletions

View File

@ -155,6 +155,12 @@ class ParseUrl {
@curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
}
$range = intval(Config::get('system', 'curl_range_bytes', 0));
if ($range > 0) {
curl_setopt($ch, CURLOPT_RANGE, '0-' . $range);
}
$header = curl_exec($ch);
$curl_info = @curl_getinfo($ch);
curl_close($ch);