php rendering large zip file - memory limit reached
问题 I try to render a zip file in php. Code: header('Content-Type: application/zip'); header('Content-Length: ' . filesize($file)); header('Content-Disposition: attachment; filename="file.zip"'); The downloaded file, is only few bytes. It is an error message: <br /> <b>Fatal error</b>: Allowed memory size of 16777216 bytes exhausted (tried to allocate 41908867 bytes) in <b>/var/www/common_index/main.php</b> on line <b>217</b><br /> I do not wish to increase memory_limit in php.ini. What are