Bug #19907
closedgzip_encode not found error in file_list.php in 4.2.4 and 4.2.5
0%
Description
missing gzip_encode inclusion in file_list.php
concerns 4.2.4 and 4.2.5
If backend compression is set, and you call the File List Module the first time (no folders are selected then) you get an error message that 'gzip_encode' ist not found in file_list.php on line 385
I looked at an old file_list.php, there was no inclusion of this class too, but the error does not occur.
Simple solutions: just add this line to the beginning of file_list.php:
require_once(PATH_t3lib.'class.gzip_encode.php');
(issue imported from #M10256)
Files
Updated by Thomas Hempel almost 16 years ago
I backported a patch from Dmitry to version 4.2
Greets,
Thomas
Updated by Clemens Riccabona almost 16 years ago
So this patch just disables gzip_encode in file_list.php?
Is this a wished behavior?
I'm not really up-to-date with the gzip matters in TYPO3, I just know that there have been some changes the last few weeks.
Updated by Thomas Hempel almost 16 years ago
I don't know if this is the wished behavior. As I wrote I only "backported" the patch for TYPO3 trunk. We'll see what core teams says. ;-)
Updated by Clemens Riccabona almost 16 years ago
applied patch on my 4.2.6 systems (this not went into 4.2.6 :( ) and it works.
So no more error is shown.
Updated by Jeff Segars almost 16 years ago
Committed v2 patch to 4.2 branch in r5029.