This is a step by step and easy to follow guide that will help you setup your own blog from the start. This guide is not to motivate someone to start blogging. It is best suited for someone who already made the decision to start a blog and need some step by step direction of the whole process.

Who Should Use This Guide?

This guide is intended for anyone who is looking for an answer to any of the following questions:

how do I setup a blog?

how to start a blog and maintain it?

Now, starting a blog is easy but in order to be able to successfully monetize the blog, you need to establish the blog. In this guide, I have also covered the topics that help you establish your blog so you can monetize it.

There is a lot of good content to go through, so it is a good idea to bookmark this page so you can come back to it later and go over the content at your own pace.

Blog Setup (Getting started)

  1. Getting a good domain name
  2. Getting a cheap and reliable web hosting solution
  3. Setup WordPress on your Blog
  4. Selecting a nice theme for your WordPress Blog
  5. What WordPress Plugins to use
  6. WordPress System Integration 101
  7. Creating your blog posts
  8. Creating your blog pages
  9. Adding imges to your blog

Creating Content For Your Blog

Establishing Your Blog


Site Optimization


Making Money from Your Blog


Marketing


To be updated…
This guide is not complete yet. I will be writing and publishing the bits and pieces of how to start a blog from scratch and make money online over the next few months as time permits.
If you have any questions feel free to leave them in the comment section below and I will follow it up.
Wednesday, 26 June 2013
0 comments

WordPress Optimization Tips and Tricks for Better Performance and Speed

13:09
Is your WordPress blog performing at it’s best? How quickly does the page load? Is it sluggish? Your website’s performance is one of the key factors in ensuring that the visitors are having a good experience with your site. So I personally think it is worthwhile to spend some time tuning/optimizing the site for performance. In this article I have listed various tips and tricks on how to speed up a WordPress Site.
Before diving into the optimization tips and tricks I recommend measuring the current performance of the site so you have some benchmarking figures to compare against after you make the changes and see how it has affected the performance.
wordpress-optimization-tips-post-icon

How to Measure the Performance of a Site

1. I use the Page Speed tool from Google to measure performance and try to achieve a score of 85+ out of 100. Page speed has a browser addon to measure the performance of a site. Page Speed analyzes web pages and suggests ways to improve their performance based on a set of rules for high performance web pages.
2. You can also use YSlow Firefox addon to measure the page load time of a site. YSlow is a Firefox add-on integrated with the Firebug web development tool. So to use YSlow you will have to get the Firebug addon and then install the YSlow addon.
website-optimazation
The site in question takes about 23 secons to load which is not a very good page loading time. Some optimization could help!
3. The number of database queries a webpage makes to load the page have an effect on the page load time. You can use the following piece of code in the footer of your theme to find out how many database queries a page is making:
<?php echo get_num_queries(); ?> queries in <?php timer_stop(1); ?> seconds.
Make sure the webpage is not making any unnecessary database queries.
4. You can use the website speed tester to find out how fast your site loads.
speed_test
Website Speed Tester
5. You can also use the stopwatch on numion.com to test how long it takes to load a webpage.

Basic WordPress Site Optimization Tips and Tricks

  • Upgrade to the latest wordpress release (you should be doing this for security reasons anyway)
  • Use W3 Total Cache WordPress plugin (Forget WP Super Cache). W3 Total Cache is just awesome… even I use it :)
  • Minimize simple unnecessary PHP queries. For example, instead of using <?php get_bloginfo(‘wpurl’); ?> just replace it with your wordpress installation URL so the browser can simply read it instead of making a query.
  • Load javascripts in the footer (The golden rule – CSS on top, javascript on bottom)
  • Kill some plugins that are unnecesary or doesn’t add much value to your site (Disable or delete these plugins)
  • Optimize and Repair your Database from myPhpAdmin. You can use the Optimize DB plugin that does this for you.
  • Check your theme Code (Use valid HTML code)
  • Get a Good hosting

Intermediate to Advanced Optimization Tips

  • Use a good hosting provider (preferably not shared hosting)
  • Keep your page sizes less than 100kb. Do not use too many unnecessary images and video on a page. Always compress the images appropriately.
  • Combine css files into one big css file (One 50kb file loads a lot faster than five 10kb files)
  • Combine javascripts into one big file.
  • Reduce the number of dynamic PHP and http calls (Use subdomains to share the load)
  • Use external scripts. Instead of placing tons of code in your header.php file, use external scripts. This allows the browser to cache the script so it won’t have to read it for every other page.
  • Add far future expires header to images, CSS and javascript files (How to Add far future expires header).
  • Don’t use ETags unless you are taking advantage of it (How to configure ETags).




0 comments:

Post a Comment

 
Toggle Footer
Top