Amazing Plugin
-
Most “intelligent” one around.
You can really feel page speed influence when activating plugin. On default settings, just plugin activated.Some quick stats:
CSS = all separate files 1.2 MB
CSS & Fast Velocity Minify = 967 KB
CSS Fast Velocity Minify & GZIP (mod_deflate) = 118 KBJS = all separate files 303 KB (without theme JS files)
JS & Fast Velocity Minify = 247 KB + 277 KB theme JS files not touched by plugin (hardcoded in theme)
JS Fast Velocity Minify & GZIP (mod_deflate) = 151 KB + 89.7 KB theme JS files not touched by plugin (hardcoded in theme)So, shortly.
CSS files 1.2 MB, to 118 KB with FVP and mod_deflate.
JS files 303 KB, to 151 KB with FVP and mod_deflate.
(Can appear as not much gain without mod_deflate. But remember to many HTTP requests make page load slower, or at least feels like it loads slower)Website is one testing ground for different plugins and code snippets, that is why so many JS, CSS files. But as such it is perfect ground to test power of Fast Velocity plugin.
Using some other theme that properly enqueue JS files results can be much better.Those are incredible results.
Allways use Apache mod_deflate module, better results than GZIP in my case anyway, nothing scientific, (or mod_gzip.c) to really feel speed improvements with this plugin.
And do not overdo by insisting to include all JS (or CSS) files, if you have problems with display and functions. Google does not punish if not all files are minimized and combined, not at all. It is expected today to have many JS, CSS files on website.
Use it together with “Expire headers”, mod_expires.c Apache module. If you are afraid webhoster will complain for high CPU usage on shared hosting.
Code for .htaccess file, to be used with Fast Velocity plugin:
<IfModule mod_deflate.c> # Compress HTML, CSS, JavaScript, Text, XML and fonts AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/vnd.ms-fontobject AddOutputFilterByType DEFLATE application/x-font AddOutputFilterByType DEFLATE application/x-font-opentype AddOutputFilterByType DEFLATE application/x-font-otf AddOutputFilterByType DEFLATE application/x-font-truetype AddOutputFilterByType DEFLATE application/x-font-ttf AddOutputFilterByType DEFLATE application/x-javascript AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE font/opentype AddOutputFilterByType DEFLATE font/otf AddOutputFilterByType DEFLATE font/ttf AddOutputFilterByType DEFLATE image/svg+xml AddOutputFilterByType DEFLATE image/x-icon AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/javascript AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/xml # Remove browser bugs (only needed for really old browsers) BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html Header append Vary User-Agent </IfModule>
- The topic ‘Amazing Plugin’ is closed to new replies.