Thursday, 4 December 2014

How To Start a Blog and Make Money Online

Here are 5 EASY steps we’ll take together to help you start a blog and make money online.



Are you curious about how to make money online? Think that starting a blog is the way to go?


Great! Starting a blog can be a solid way to make long-term income – just for doing some writing on stuff you actually like and care about. But there’s a little more to it than that AND it may not be for everyone. This is not a get rich quick or plug and play business. If that’s what you’re looking for, this is not the place for you.

Yes, you can make a lot of money online but, like other traditional businesses, it’s not guaranteed. Anyone who tells you otherwise, is not being truthful.

Our goal is to help people who are really serious about building a real online business – because you can make a little, or a lot of money. That all depends on you…

Here’s the big difference between making money online and going to a job every day. If you do it right, the work you do today, this week, and this year – will continue making money for years to come. It’s an investment rather than trading your time for money.

So how does this work? Search engines find and cache the articles that you write, and over time each post is “worth more” to the search engines. That means you’ll get more web site traffic with every passing month as your site gains credibility. This does not happen overnight. It takes persistence and even some hard work – but you can do it if you’re serious and committed…

We did it (Dan and I both walked away from our corporate jobs and now do this full time), and so can you. The good news is that you get to take advantage of what we’ve learned over the last several years and avoid the sand traps that we had to dig our way out of.


So let’s get started – RIGHT NOW!

Reduce the Size of MySql Databases

MySql is one of the most popular choices in databases, used by many online websites to store user details. When a database is being used online however, one of the most important factors is that it shouldn’t take up too much space on the web server. Unnecessarily allowing your MySql database to take up more room than it needs means that there is less storage space for web files that make up the websites. When web storage costs money to purchase, it is pointless to allow space to be taken up by blank areas of database, especially when there is something that you can do about this.

In order to shrink the size of a MySql database, it is important to optimize the database. This can potentially reduce the size of the database to just a fraction of its current size. It is a fast operation to complete, which should form part of your regular website maintenance.

Will I lose any data?

You wont lose any data when you optimize a database. Optimization performs a check on your current database for any empty space and reorganizes the way that the data is stored. Existing data is moved to the empty space so that the database is only being used by actual information. Technically, the empty space is deleted so that the rows in the database that were being taken up by blank cells are no longer there.

How can I tell if my database needs to be optimized?


Running optimization is not always necessary. You should check the size of the overhead in your database to see if it needs to be reduced. The overhead indicates just how much space is being taken up by empty cells.

You can find out the size of the overhead by opening your MySql database from the hosting panel in your web server control panel. Beside each of the tables in your database is an ‘overhead’ column which tells you the size of the free space.

How do I perform the optimization?

The first thing that you need to do is backup your database. This is good practice for any procedure, but because the optimization process moves and deletes parts of your database, there is a risk that something could go wrong.

To run the optimization, open your MySql application with the database open that you wish to optimize. Choose the tables that you wish to run the operation on by checking the boxes beside the tables that you wish to optimize and then click on the “with selected” drop down menu. Choose the “Optimize Table” option and allow it to run.

These are the only steps that you need to take, so if you see that your MySql database size is growing, you should back up and optimize your tables so that you can make the most of the space that you have. By performing a MySql database optimization frequently, the process will be quick and efficient. The more free space there is to clean up, the longer the process will take.