mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Réglage de l'output buffering
|
|
*
|
|
* Si possible, générer une sortie compressée pour économiser de la bande passante
|
|
*
|
|
* Utilisation déconseillee et désactivee par défaut.
|
|
* Utilisable uniquement via define('_AUTO_GZIP_HTTP',true)
|
|
*
|
|
* @package SPIP\Compresseur\Options
|
|
*/
|
|
|
|
// si un buffer est deja ouvert, stop
|
|
if ($GLOBALS['flag_ob']
|
|
AND defined('_AUTO_GZIP_HTTP') AND _AUTO_GZIP_HTTP
|
|
AND strlen(ob_get_contents())==0
|
|
AND !headers_sent()) {
|
|
|
|
if (
|
|
// special bug de proxy
|
|
!(isset($_SERVER['HTTP_VIA']) AND preg_match(",NetCache|Hasd_proxy,i", $_SERVER['HTTP_VIA']))
|
|
// special bug Netscape Win 4.0x
|
|
AND (strpos($_SERVER['HTTP_USER_AGENT'], 'Mozilla/4.0') === false)
|
|
// special bug Apache2x
|
|
#&& !preg_match(",Apache(-[^ ]+)?/2,i", $_SERVER['SERVER_SOFTWARE'])
|
|
// test suspendu: http://article.gmane.org/gmane.comp.web.spip.devel/32038/
|
|
#&& !($GLOBALS['flag_sapi_name'] AND preg_match(",^apache2,", @php_sapi_name()))
|
|
// si la compression est deja commencee, stop
|
|
# && !@ini_get("zlib.output_compression")
|
|
AND !@ini_get("output_handler")
|
|
AND !isset($_GET['var_mode']) # bug avec le debugueur qui appelle ob_end_clean()
|
|
)
|
|
ob_start('ob_gzhandler');
|
|
}
|