Actions
Feature #1185
closedPHP compression activation
Start date:
Due date:
% Done:
0%
Estimated time:
Plus Target Version:
Release Notes:
Description
Need to reactivate PHP compression:
- turn on zlib.output_compression in php.ini.
- make sure all generated downloads are using the "Content-length" header (IE has some troubles in https without this header)
- for each download, use something like :
if (ini_get('zlib.output_compression')) {
ini_set('zlib.output_compression','Off');
}
Updated by Chris Buechler over 9 years ago
- Status changed from New to Closed
enabled gzip compression in nginx for 2.3. no need for PHP compression
Actions