fix an other case of "Network error" when downloading as ZIP

This commit is contained in:
ralf 2022-04-22 11:00:09 +02:00
parent 5fffdf9baa
commit 022258cc85

View File

@ -1504,12 +1504,6 @@ class Vfs extends Vfs\Base
//error_log("Total files: " . $total_files . " Peak memory to zip: " . self::hsize(memory_get_peak_usage(true))); //error_log("Total files: " . $total_files . " Peak memory to zip: " . self::hsize(memory_get_peak_usage(true)));
// Stop any buffering
while(ob_get_level() > 0)
{
ob_end_clean();
}
// Stream the file to the client // Stream the file to the client
header("Content-Type: application/zip"); header("Content-Type: application/zip");
header("Content-Length: " . filesize($zip_file)); header("Content-Length: " . filesize($zip_file));