Changeset 1594196
- Timestamp:
- 02/12/2017 01:11:11 PM (9 years ago)
- Location:
- advanced-speed-increaser
- Files:
-
- 8 added
- 2 edited
-
tags/2.0.0 (added)
-
tags/2.0.0/admin-setting.php (added)
-
tags/2.0.0/advanced-speed-increaser.php (added)
-
tags/2.0.0/assets (added)
-
tags/2.0.0/assets/css (added)
-
tags/2.0.0/assets/css/admin.css (added)
-
tags/2.0.0/icon20x20.png (added)
-
tags/2.0.0/readme.txt (added)
-
trunk/advanced-speed-increaser.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
advanced-speed-increaser/trunk/advanced-speed-increaser.php
r1505337 r1594196 4 4 Plugin URI: https://wordpress.org/plugins/advanced-speed-increaser/ 5 5 Description: Advanced Speed Increaser is a light weighted plugin to speed up wordpress website by using GZIP compression and setting header expiration for images. Including Database cleanup and optimization tool to make your wordpress website lighter and faster. 6 Version: 2. 0.06 Version: 2.1.0 7 7 Author: Animesh 8 8 Author URI: http://www.thelogicalcoder.com/ … … 12 12 13 13 */ 14 define( 'TWASI_VERSION', '2. 0.0' );14 define( 'TWASI_VERSION', '2.1.0' ); 15 15 define( 'TWASI_PLUGIN', __FILE__ ); 16 16 define( 'TWASI_PLUGIN_BASENAME', plugin_basename( TWASI_PLUGIN ) ); … … 87 87 ExpiresByType text/css A2592000 88 88 ExpiresByType text/javascript A2592000 89 ExpiresByType application/javascript A2592000'; 89 ExpiresByType application/javascript A2592000 90 #Turn Off ETags 91 Header unset ETag 92 FileETag None 93 '; 90 94 insert_with_markers( $file_path, "Advanced Speed Increaser", $insertion ); 91 95 return $status; … … 208 212 209 213 function tw_asi_admin_message() { 210 $tw_asi_msg = get_option( 'tw_asi_msg', 0);214 $tw_asi_msg = get_option( 'tw_asi_msg', 1 ); 211 215 if($tw_asi_msg!=1){ 212 216 echo '<div id="tw_asi_admin_message" class="notice-warning settings-error notice is-dismissible"> -
advanced-speed-increaser/trunk/readme.txt
r1547184 r1594196 2 2 Contributors:animeshsarakd 3 3 Donate link:http://www.thelogicalcoder.com/manage.php/?plugin=twasi&type=donate 4 Tags: expiry header, far future expiration, expires header, gzip, javascript, css, compression, speed, speed up website, browser caching, optimize database, clean database, clean spam, font 4 Tags: expiry header, far future expiration, expires header, gzip, javascript, css, compression, speed, speed up website, browser caching, optimize database, clean database, clean spam, font, ETags, entity tag 5 5 Requires at least: 3.5 6 6 Tested up to: 4.7 7 Stable tag: 2. 0.07 Stable tag: 2.1.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 17 17 * Advanced Speed Increaser enable GZIP compression in your website. 18 18 * Advanced Speed Increaser enable Leverage Browser Caching. 19 * Advanced Speed Increaser Turn Off ETags. 19 20 * Advanced Speed Increaser minify HTML, inline CSS and Javascript. 20 21 * Advanced Speed Increaser set far future expiration date for static files (eg. image,fonts,javascript etc). … … 33 34 34 35 == Frequently Asked Questions == 35 * Please make a copy of your .htaccess file .36 * Please make a copy of your .htaccess file, You may get 500 sever error if your server does not support GZIP compression. 36 37 * Go to plugin settings page to minify HTML, inline CSS and Javascript. 37 38 * Go to plugin settings page for using database cleanup and optimization tool. 38 39 * For more help please see our tutorial http://www.thelogicalcoder.com/increase-speed-of-your-wordpress-website/ 39 40 == Changelog == 41 42 = 2.1.0 = 43 * Turn Off ETags. 40 44 41 45 = 2.0.0 = … … 50 54 == Upgrade Notice == 51 55 56 = 2.1.0 = 57 * Turn Off ETags. 58 52 59 = 2.0.0 = 53 60 * Include HTML, inline CSS and Javascript minifier tool.
Note: See TracChangeset
for help on using the changeset viewer.