I am attempting to use the following code to allow downloads from my website:
while(!feof($file)) {
print(fread($file, 1024*8));
flush();
if (connection_status()!=0) {
@fclose($file);
die();
}
}
@fclose($file);
It has been working great on files under 20MB, but I recently provided a file around 150MB, and quickly found that no more than 80MB was being downloaded. After much research I found an out of memory error in the last few lines of the incomplete file:
Fatal error: Out of memory (allocated 82313216) (tried to allocate 81530881 bytes)
It was my understanding that print(fread(...)) was allocating and reading the (1024*8) bytes from the file, dumping them via print, then utilizing the same 8192 bytes to read/dump the next section of file.
Obviously I have something wrong, can anyone help me understand what is really happening here? And any possible workarounds for the problem? Thanks!
Update: The error message refers to line 302, which is:
while(!feof($file))
Also, the browser displays the progress bar appropriately, so I know the file size is being sent correctly.
readfile()(php.net/readfile) (As a sidenote: Its usually a bad idea to pass static content through PHP just because its possible). It mentions "Tried to allocate [~80MB]". You are sure, that this is really the code, that causes the error? – KingCrunch Jan 2 at 19:17