File download endless loop
-
on line 552 of includes/class-dlm-download-handler.php
// Zip corruption fix while ( ob_get_level() > 0 ) { @ob_end_clean(); }
This for us is causing an endless loop (PHP 5.3.3 redhat). I think its because ob_get_level() is returing 1 and ob_end_clean() is returning false. If I check ob_get_length() it returns 0. So I don’t think its actually causing ob_get_level() of 1 to be purged and set to 0.
optional fix:
// Zip corruption fix if( ob_get_length() ) { while ( ob_get_level() > 0 ) { @ob_end_clean(); } }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘File download endless loop’ is closed to new replies.