From 4bec8769320079e0174dc82e064051b3c8d3cf16 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Mon, 4 Oct 2004 08:59:01 +0000 Subject: [PATCH] Turn off GZIP. git-svn-id: https://develop.svn.wordpress.org/trunk@1740 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 d0007cdb1c..5ba9eb005b 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);