Bugfix ParseUrl: Only fetch a range to avoid memory issues
This commit is contained in:
parent
bd62f10697
commit
c84a2fb1a3
1 changed files with 6 additions and 0 deletions
|
@ -155,6 +155,12 @@ class ParseUrl {
|
||||||
@curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
|
@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);
|
$header = curl_exec($ch);
|
||||||
$curl_info = @curl_getinfo($ch);
|
$curl_info = @curl_getinfo($ch);
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
|
|
Loading…
Reference in a new issue