I'm using readfile() in a php download script.

When I try to download a 9gb sized file, I get the following error:

function.readfile</a>]: failed to open stream: Value too large for defined data type in path of my file

Is it possible to fix it or do I have to move those files to the public_html directory and link them directly?

link|improve this question

1  
wow, parsing 9GB with php? maybe wrong tool for the job~? – Shad Jun 24 '11 at 5:03
@Shad // can't agree more, but what can i do..i have to fix it – Moon Jun 24 '11 at 5:04
@Shad //um.. well...it is not parsing actually. it is reading* and sending – Moon Jun 24 '11 at 7:00
feedback

2 Answers

up vote 1 down vote accepted

you can hack a way though. If you are on a unix environ, you can do

passthru('cat $filename');

as long as you don't need to write

link|improve this answer
@Jermy Walton // works perfectly!! – Moon Jun 24 '11 at 5:54
@Jermy Walton // one more question...as @Shad implied, I'm worrying about the server memory. Is it okay to use passthru with cat command to download files? How is it diff from downloading a file via apache server? – Moon Jun 24 '11 at 5:55
You don't have to worry about memory, as the stdin/stdout buffer is of fixed length. Once cat has filled it, it has to wait until php takes some off to send more. The file is not entirely in memory. This is not something you want to do all the time, because spawning a process to handle this is expensive. Its different than sending it directly from the apache server is because apache will send the file faster and with less overhead, than php will. Always send the file via apache first, if you can. – Jeremy Walton Jun 24 '11 at 8:55
feedback

You most likely need to re-compile php with CFLAGS="-D_FILE_OFFSET_BITS=64" so that PHP is able to handle large files. There's comment about that on the fopen documentation page.

Some additional reading:

link|improve this answer
Deschences // Thank you for the answer. Is there any other ways ? We can change php.ini, but recompiling is not an option. Also, Brad G on the php.net mentioned that CFLAGS can cause an issue. ca3.php.net/manual/en/function.fopen.php#37791 – Moon Jun 24 '11 at 5:09
@Moon - That is correct. Unfortunately, there is no other way that I'm aware of. I ran into a similar issue a while back (except it was with large flat file databases). – Francois Deschenes Jun 24 '11 at 5:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.