From bb81f7e0862f17f0d1e108646cb580335277021b Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Mon, 15 Jan 2024 11:46:01 +0100 Subject: [PATCH] Download: remove limits on maximum execution time --- controllers/Download.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/controllers/Download.php b/controllers/Download.php index 95fd163..ffd60c2 100644 --- a/controllers/Download.php +++ b/controllers/Download.php @@ -79,6 +79,9 @@ class Download // STDOUT should not block. stream_set_blocking($pipes[1], 0); + // Allow this the download to take its time... + set_time_limit(0); + header('Pragma: no-cache'); header('Content-Description: File Download'); header('Content-disposition: attachment; filename="' . $album->tag . '.tar"');