Monday 26 July 2010 2:23:12 pm
We have a workaround for LARGE files Edited ezfilepassthroughhandler.php: line 99:
// Workaround for large files
while($var=fread($fh,10000)) {
print($var);
} //fpassthru( $fh ); This is working but I need to know if this a bug I'm fixing or eZ systems is using fpassthru() instead of fread() for a reason ezfilepassthroughhandler.phpedited
|