Changeset 932 for bb-gzip-webpage-compression
- Timestamp:
- 03/07/08 10:16:46 (9 months ago)
- Files:
-
- bb-gzip-webpage-compression/trunk/bb-gzip.php (modified) (1 diff)
- bb-gzip-webpage-compression/trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
bb-gzip-webpage-compression/trunk/bb-gzip.php
r584 r932 1 1 <?php 2 2 /* 3 Plugin Name: bbPress Web Compress (bb-gzip)3 Plugin Name: bbPress Web Compression (bb-gzip) 4 4 Description: compresses bbpress pages on the fly 5 5 Plugin URI: http://bbpress.org/plugins/topic/66 6 6 Author: _ck_ 7 Author URI: http:// CKon.wordpress.com7 Author URI: http://bbShowcase.org 8 8 Version: 0.02 9 */ 10 /* 9 11 10 License: CC-GNU-GPL http://creativecommons.org/licenses/GPL/2.0/ 12 11 13 Makes bbPress pages smaller and faster for all modern web browsers that support it and leaves others alone. This plugin is only for those that do not have compression available on their host. 14 15 == Description == 16 17 This plugin is only for bbPress users on servers which have no other compression methods installed (mod_gzip, mod_deflate, etc.) 18 Please check to make sure your pages are NOT already compressed, ie. via http://www.pipeboost.com/report.asp or http://whatsmyip.org/mod_gzip_test/ 19 20 bbPress Web Compress gzips output to all modern web browsers that support it and leaves others alone. 21 A 30k page can be reduced to as little as 5k which can be appreciated even on broadband and reduce your hosting bill if you are near your limit. 22 Your static files, css, javascript & images will not be compressed. 23 24 (some coders think this is as easy as setting ob_start("ob_gzhandler") but there are often missed checks and performance options) 12 Makes bbPress pages smaller and faster for all modern web browsers that support it and leaves others alone. 13 This plugin is only for those that do not have compression available on their host. 25 14 26 15 == Instructions == bb-gzip-webpage-compression/trunk/readme.txt
r585 r932 1 1 === bb Gzip === 2 Tags: compress, bandwidth, performance, speed, mod_gzip, mod_deflate2 Tags: compress, bandwidth, performance, speed, gzip, mod_gzip, mod_deflate, _ck_ 3 3 Contributors: _ck_ 4 4 Requires at least: 0.8 5 5 Tested up to: trunk 6 6 Stable tag: trunk 7 Donate link: http://amazon.com/paypage/P2FBORKDEFQIVM 7 8 8 9 Makes bbPress output smaller and faster pages for all modern web browsers. Only use if you do not have compression already available on your host. … … 10 11 == Description == 11 12 12 This plugin is only for bbPress users on servers which have no other compression methods installed (mod_gzip, mod_deflate, etc.)13 Please check to make sure your pages are NOT already compressed, ie. via http://www.pipeboost.com/report.asp or http://whatsmyip.org/mod_gzip_test/13 * This plugin is only for bbPress users on servers which have no other compression methods installed (mod_gzip, mod_deflate, etc.) 14 * Please check to make sure your pages are NOT already compressed, ie. via http://www.pipeboost.com/report.asp or http://whatsmyip.org/mod_gzip_test/ 14 15 15 bbPress Web Compress gzips output to all modern web browsers that support it and leaves others alone.16 A 30k page canbe reduced to as little as 5k which can be appreciated even on broadband and reduce your hosting bill if you are near your limit.17 Your static files, css, javascript & images will not be compressed.16 * bbPress Web Compress gzips output to all modern web browsers that support it and leaves others alone. 17 * A 30k page can typically be reduced to as little as 5k which can be appreciated even on broadband and reduce your hosting bill if you are near your limit. 18 * Please note your static files, css, javascript & images cannot be compressed via this plugin. 18 19 19 (some coders think this is as easy as setting ob_start("ob_gzhandler") but there are often missed checks and performance options) 20 == Installation == 20 21 21 == Instructions == 22 * Check to make sure web pages aren't already compressed 23 * Install, activate 24 * Analyze webpages again to see size/speed improvements 22 25 23 Check to make sure web pages aren't already compressed, install, activate, analyze webpages again to see size/speed improvements. 26 == Frequently Asked Questions == 27 28 = Can't this just be done with `ob_start("ob_gzhandler")` ? = 29 30 * Some coders think this is as easy as setting `ob_start("ob_gzhandler")` but that skips some helpful checks and performance options 24 31 25 32 == License == 26 33 27 CC-GNU-GPL http://creativecommons.org/licenses/GPL/2.0/34 * CC-GNU-GPL http://creativecommons.org/licenses/GPL/2.0/ 28 35 29 == Version History==36 == Donate == 30 37 31 Version 0.01 (2007-08-06) 38 * http://amazon.com/paypage/P2FBORKDEFQIVM 39 40 == History == 41 42 = Version 0.01 (2007-08-06) = 32 43 33 44 * bb-gzip is born 34 45 35 Version 0.02 (2007-08-09) 46 = Version 0.02 (2007-08-09) = 36 47 37 48 * a couple extra checks for special conditions added, chunked output if possible
