From f14cb068566e6b92f821a8e5e0e14707a75d28b3 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Mon, 4 Oct 2004 08:59:01 +0000 Subject: [PATCH] Turn off GZIP. git-svn-id: http://svn.automattic.com/wordpress/trunk@1740 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/plugins/staticize-reloaded.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-content/plugins/staticize-reloaded.php b/wp-content/plugins/staticize-reloaded.php index d0007cdb1..5ba9eb005 100644 --- a/wp-content/plugins/staticize-reloaded.php +++ b/wp-content/plugins/staticize-reloaded.php @@ -11,6 +11,8 @@ Author URI: http://photomatt.net/ $http = false; // This controls whether we send etag and last-modified headers or not define(CACHE_PATH, trailingslashit( ABSPATH . 'wp-content/staticize-cache' ) ); +update_option('gzipcompression', 0); + if ( !file_exists(CACHE_PATH) ) : if ( is_writable( dirname(CACHE_PATH) ) ) $dir = mkdir( CACHE_PATH, 0777);