New Post has been published on iWebArticle - Free Social Syndication Article Directory Community!
New Post has been published on http://iwebarticle.com/quick-tips-for-boosting-your-blog-load-speed/
Quick Tips For Boosting Your Blog Load Speed
Minify & Combine Javascript/CSS
WP-Minify
This plugin integrates the Minify engine into your WordPress blog. Once enabled, this plugin will combine and compress JS and CSS files to improve page load time.
How Does it Work?
WP Minify grabs JS/CSS files in your generated WordPress page and passes that list to the Minify engine. The Minify engine then returns a consolidated, minified, and compressed script or style for WP Minify to reference in the WordPress header.
Use a Content Delivery Network
CDN stands for Content Delivery Network or Content Distribution Network. Basically, it’s a bunch of highly optimized servers all across the world, with a bit of unique logic worked into them: you’ll always hit the server that’s closest to you. This leads to huge performance improvements for sites that have visitors from all across the world, like this one.
My images were coming from the US, which was better for like 50% of my readers but pretty slow for a lot of my European readers (about 35% of my readers are European). Now, for them, these images can come from the CDNs servers closest to them, in a lot of cases, this CDN server would be in the same country as them. MaxCDN servers are literally all over the world.
The CDN works with so called Pull URL’s. This means you specify a directory on your server that it pulls all files from, which it then starts serving from the CDN. This allows for a few quite neat tricks, for starters, to serve all your uploaded files from the CDN quite easily, once you’ve done some WordPress stuff that I’ll of course take care of for you in the next section…
Cache Your Site
Search engines consider site speed to be an important factor search rankings. This is why at iWebArticle we try our best to improve site load speed to an optimal level. Doing that, we have noticed that caching our website helped us improve site speed as well as balancing huge spikes in traffic.
Note: Both W3 Total Cache and WP Super Cache are great plugins. We highly recommend that you use one or the other depending on your needs. WP-Super-Cache just happens to work very well with our Genesis WordPress Theme.
First thing you need to do is install and activate WP Super Cache plugin. Upon activation, WP Super Cache will notify you that caching is not enabled on your website at the moment.
Setting up WP Super Cache – The Easy Way
To enable cache, go to Settings » WP Super Cache. Under the Easy tab, turn Caching on and hit update status button.
After turning on the cache, click on the test cache button to check if it is working. WP Super Cache will fetch your WordPress site twice and will compare the time stamps of both pages. If the both time stamps match then this means that caching is working on your site now.
WP Super Cache Advanced Set up
WP super cache is a powerful plugin, and it comes with many advance options. These options can further improve your site’s performance. To Set up WP Super Cache with advance options, go to Settings » WP Super Cache and click on Advanced tab.
Enable Caching
First check the box that says Cache hits to this website for quick access. Below that you will see three caching options. By default WP Super Cache uses PHP to serve cache files. However, using PHP to serve cache files can be resource incentive particularly on shared hosting environments. So we would like to recommend that you try using mod_rewrite to serve cache files. After that scroll down and hit the update status button to save these settings.
WP Super Cache will now show you a notification that mod_rewrite rules must be updated and possibly another notification about scheduling garbage collection. Scroll down the page, and you will see mod_rewrite rules that needs to be added. Click on Update Mod_Rewrite Rules button to update these rules. Once mod_rewrite rules are updated this section will turn green.
To resolve the notice about garbage collection, scroll down on the advance settings page to the Expiry Time & Garbage Collection section and set up a time and frequency for garbage collection of cached files on your server.
Enable Compression in WP Super Cache: Compression allows WP Super Cache to serve cached files as compressed files. These files are downloaded by user browsers quickly due to their smaller size. To enable compression, simply check the box that says Compress pages so they’re served more quickly to visitors.
Setting up CDN with WP Super Cache
To setup CDN with WP Super Cache, click on the CDN tab and check the box next to Enable CDN Support option. Enter your offsite URL, which will be the url of your pullzone. For example, http://cdn.iwebarticle.com
In the additional CNAMEs field enter other CNAMEs you have created for your pullzone. For example, http://cdn1.iwebarticle.com, http://cdn2.iwebarticle.com , http://cdn3.iwebarticle.com
Lastly, check the box that says Skip https URLs to avoid “mixed content” errors and save changes. Now your website is now ready to serve static content from a CDN.
Serve a Static Site with WP Super Cache
The preload mode in WP Super Cache allows you to create super cache static files for all your posts and pages and serve a static website. You may ask Why would anyone want to do that?
-To conserve server resources. - To serve an old site that is not being updated anymore. - To improve site speed by serving static content only.
These were just a few reasons but there could be many more reasons and situations where you might want to completely disable PHP processes. Don’t worry your WordPress will work normally, and you will still be able to manage your content with WordPress.
Refresh preload cache files options will be set to zero by default, minimum required time is at least 30 minutes. Pre-loading your entire WordPress site takes some time and consumes a lot of resources on your server. You can leave it to 0 if you do not want your static files to expire ever unless you manually refresh cache.
Detect for Errors
Use valid markup that contains no errors. Syntax errors can make your page difficult for search engines to index.
To find the detected errors, run the W3C validation service, or check Validator.nu to make sure you don’t miss an error.














