Archive for the ‘Blogging’ Category

Best Blogging Platform – Which Blogging Platform Should You Use?

Monday, April 20th, 2009

Many bloggers and would be bloggers don’t use WordPress because they feel it is too difficult to set up and too expensive to operate. Both of these reasons are common misconceptions and totally untrue.
If you were to notice, some blogging publication platforms are more complex than the others. Although there are many blogging platforms such as WordPress (self-hosted version), Blogger, Bloglines, Text Pattern, Moveable Type, Serendipity, Life Type, and Flat Press.

Blog platforms such as WordPress and Blogger are versatile and easy to use. However, WordPress is far and away the best choice for setting up your blog because of its astonishing versatility, astounding functionality, and incredible revenue generating potential.
Here are some reasons why WordPress is the best blogging platform. Firstly, when you use other blogging platforms that are not self hosted your content does not really belong to you. This means that your blog can be pulled offline at any time and without any reason.

Secondly, these are add on programs that can easily add a massive array of functionality to your blog. Most widgets are free and very easy install. Some widgets can even automate your blog content which means you never have to write a word.

Lastly, you can actually install WordPress and set it up as a website rather than a blog. This is a very nice feature, especially if you know next to nothing about web design or HTML code. Depending on the themes you chose to use you can actually create a very nice looking and super easy to update website with just WordPress. If you want to install WordPress and use it as a website, log into your control panel and click on “Reading” under the Settings tab. Simple select “A Static Page” and your blog will become a website!

So in reality, WordPress is both very easy to setup and very inexpensive to own and operate if you choose the right host. If you are interested in blogging because you want to make money from your blog then a WordPress blog is a must and no self-respecting Internet Marketer will tell you any different.

New Twitter Users Biggest Mistakes: How to Avoid Them

Friday, April 17th, 2009

I am not usually a big fan of rules when it comes to social media, but I do think there are ways to make your experience using tools such as Twitter more beneficial to yourself and others. There are some common mistakes I see new users make that I want to share with you. The good news is, once you are aware of them they are really easy to avoid!

Mistake: Not using a real picture of yourself for your avatar.

When I first joined Twitter over a year ago I was guilty of using a cartoon-type picture of me for mine. I thought it was cute and it happened to be part of the design I had on my previous blog. However, I switched to an actual photo of myself a few months later, and more than a few people commented that they were glad to see the real me.

I feel the same about others now. A picture of you is a lot more personable than a picture of your dog or a company logo. People like to see your smile!

Mistake: Automating pushy direct messages for new followers.

Many Twitter users use a service such as TweetLater to set up automatic messages to go to anyone who begins following them. This is a bit controversial among people on Twitter. If you are automating a friendly message to just say thanks for following me, that’s one thing, but a message with a link to one of your products when we haven’t even connected yet is generally frowned upon.

Mistake: Starting to follow people without posting a couple of your updates.

It may feel like you are talking to yourself to do this, especially if you don’t have any followers yourself. But when someone comes upon your page and is deciding whether or not to follow you, they need something to go on. People are looking for some sign of life or personality.

Mistake: Not spending a good amount of time interacting.

There is nothing wrong with letting others know what you did last night or what your plans are for the day. Just be sure to intersperse your tweets with some two-way conversation. Ask questions, re-tweet others, reply to questions, comment on others tweets, etc. This builds community and keeps things balanced and interesting.

Mistake: Mass following right out of the gate.

My ratio of followers to those I am following is pretty even, mainly because I like to follow back most of the people who follow me as long as they don’t look like spammers.

However, I find it hard to follow others who, in addition to having only a couple of updates, are following thousands of people and have only a few people following them. It feels spammy, like they don’t have much interest in having a relationship or conversation with anyone.

Mistake: Doing everything from the web instead of using a Twitter client.

Installing a client such as Tweetdeck gives you more functionality than what you can do from the Twitter website alone. For example, Tweetdeck allows you to place people in groups which make it easier to keep track of them, especially once you are following lots of people. Plus, you don’t have to be connected to the web to use these types of clients. I find they make tweeting a lot easier and more convenient for keeping track of your replies, direct messages and followers.

Mistake: All promotion, all the time.

As I have mentioned in previous articles, no one likes to follow someone who is constantly selling and promoting without giving anything back. Keep things balanced and respect that others do not want to be pitched all of the time. That being said…

Mistake: Not leveraging Twitter as part of your business marketing strategy.

If you are in business and using social media, you are looking at Twitter as a tool to get results in that business, not to just socialize all day. Remember that it is a great way to reinforce your brand, form strategic alliances and build credibility and trust.

by Christine Gallagher

Adding Extra Sidebar to your WordPress Theme

Thursday, April 16th, 2009

While trying to add an extra sidebar to my blog, I found this fantastic article over at Blog oh Blog by Jai. All credit goes to them for the article, i just thought it was so great, I wanted to share it with everyone.

You can find the original article here.

You like a WordPress theme on the Internet but Oh!… What’s this?? The theme has only one sidebar! You need more than one and are on the verge of switching to some other theme with more sidebars. But wait!! Let me teach you how to add an extra sidebar or sidebars to your favorite theme. People who know PHP will find it easy to follow but even novices can easily do it using the code that I have provided in this tutorial. I am assuming that you already know HTML and a bit of CSS.

To begin the tutorial, extract your theme into a folder and open it to see all the files. If your theme has only one sidebar, then most probably you will NOT find a file called functions.php in your theme folder. In that case you will have to create this file yourself. Just open notepad or any other code editor to start a new file.

Put this code into that file :-

<?php

if ( function_exists(‘register_sidebars’) )

register_sidebars(2);

?>

Save the file as functions.php and put it in your theme folder. This piece of code actually tells WordPress to register two sidebars for you (See register_sidebars(2) in the code). If your theme has more than one sidebar, you will find the functions.php file already present in your theme folder. You just have to edit the number to your requirement and save the file. You can increase this number if you want more sidebars and if your theme’s layout can accommodate it. Now, when you go to your WordPress admin section and browse to the widgets under the menu item called presentation, you will see two sidebars listed there. You can drag your widget items into any of the sidebars.

Now comes the part where we actually build the sidebars. If your theme has only one sidebar, try to locate a file called sidebar.php in your theme folder. In this example, where we are trying to modify the theme for two sidebars, let’s rename sidebar.php to sidebar1.php and make a new blank file called sidebar2.php.

Put this code into sidebar2.php and save the file :-

<div>

<ul>

<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(2) ) : else : ?>

<?php endif; ?>

</ul>

</div>

So, we have the two sidebars ready but they have not been placed in the index.php file yet. Both these sidebars need to be called from the index.php file in order to include them in your theme. Just open the index.php file from your theme folder and locate the code that calls your sidebar file (sidebar.php earlier).

It should look something like :-

<?php include (TEMPLATEPATH . ‘/sidebar.php’); ?>

Edit this code and change the words sidebar.php to sidebar1.php.

This takes care of the first sidebar. Now take a look at the index.php file carefully and find a suitable place to insert the second sidebar. This might involve modifying your layout or adding new divs.

Once you find a suitable place, place the following code there :-

<?php include (TEMPLATEPATH . ‘/sidebar2.php’); ?>

Save the index.php file and now preview your theme. You will see all the widgets that you placed in both your sidebars appearing on your website. If you have not placed any widgets yet, you will not see any change. There might be alignment errors but you will have to fix them yourself. You can add more sidebars in a similar way to your WordPress theme. I hope this tutorial helps some of you.

Using Twitter For Link Building

Monday, April 13th, 2009

Links on Twitter are already nofollowed and most are shortened anyway by a shortener. What use can Twiitter be for link building? Link building Eric Ward says the site is perfect for finding niche experts.

It’s not about huge amounts of followers or traffic spikes. You can get that kind of traffic from Digg. But the advantage of Twitter, says Ward, is that people specific to an industry are out there, findable on Twitter.

So if you specialize in little plastic doohickeys they put on shoestrings, irrelevant traffic is not what you’re after. At Search Engine Land, Ward explains how a message that begins as a tweet ends up as a link from a highly trusted website:

A few weeks ago I announced a new site via URLwire, and whenever I do this I set up several alerts/trackers to see where mentions/links show up. I also set up a Twitter search for that new URL….the new site I announced has been tweeted or re-tweeted by seven people…I discovered all of them were health experts in one form or another. Also, all of them had several hundred followers (one had 780), and a quick check of a few dozen of those showed some overlap (expected) as well as frequent health URL tweets. In other words, I’d found a loose community of several thousand collective Twitterer’s who had shared news about a new web site URL.

One of those re-tweets came from a librarian at a med school web site, who did one more thing with that URL. She added a link to it from the med school web site she’s in charge of editing. What started to her as a tweet ended as a permanent link from her high trust web page.

What’s even better about that is that earned link was a free, organic one, the best kind. No manipulation, no buying, no trading. And that one very trusted link is likely to outweigh many links (however they’re gotten) from not-so-trusted websites.

Article by Jason Lee Miller

Proven Insider Tips to Get More Web Visitors Quickly and Easily

Friday, March 27th, 2009

Believe me, in spite of the current financial turmoil, there hasn’t ever been a better time to generate an online income stream!

And yet it seems that so many budding Internet marketers are finding it hard to break through VNB – the “Visitor Numbers Barrier.”

When I started, I thought there was some magic elixir or secret technique that would transform my visitor numbers! If only I could find THE ONE successful method!

Well, this article is to let you know that while there may be hundreds of ways to get visitors to your website – I’ve selected some of the techniques that work best for me.

And they can work for you, as well.

Because, if there IS a secret of success, it is this: “Don’t rely on ONE way to generate traffic. Become familiar with MANY.” Better to have many visitor doors to your website, rather than just one, don’t you think?

I’m still surprised how many serious Internet marketers neglect the basics. And one of the most basic ways to improve your visitor traffic is to be absolutely certain that your website is listed by the search engines.

Don’t trust the search engine spiders to do your work for you. All the major search engines have detailed and easy-to-follow instructions on site submission, as well as how to create and submit site-maps.

I don’t think Facebook needs a great deal of introduction, does it? But you can mine value for Facebook if you look for opportunities to include your website on information that you provide.

Then, there is what I call the secret power of blogging: search engines LOVE blogs. The search engine spiders thrive on novelty and change, and if you write or post a new entry to your blog every day – or every other day – the search engines will recognize what is going on and begin to rank your website blog higher than a website that doesn’t change its content from month to month. And a high ranking means visitors to your site.

Don’t forget that you can leverage your signature in online communities or discussion groups. If your product is specifically niched, then you know that there are loyal and relevant online communities or discussion groups who want to hear from you.

And, your forum signature could be a goldmine once you have thought through the best way of expressing your product’s unique feature so that readers find your website irresistible.

Would you like your web address to be seen by ten million people in ten minutes? Well, it’s possible – if you’re careful! Because there are three kinds of people: those who love Google Adwords, often known as Pay Per Click, those who hate it – and those who haven’t tried it.

Many people just go nuts trying to get their advertisement absolutely perfect. And, if you don’t read the small print, you could find that your budget is exhausted quickly. But if you follow the guidelines and budget sensibly you could attract many, many hundreds of paying visitors on a daily basis.

Do you remember those kid’s stories where the fairy Godmother tells the child to repeat a word three times for magic to happen? Well, here’s that word: “eBay”, “eBay”, “eBay”.

There – I’ve said it. eBay is perhaps THE most underestimated visitor generating resource. Ignore eBay at your peril. There are many, many resources available on the web where you can discover how to sell products on eBay. Until recently you could sell digital products (i.e. eBooks, which you can download) but the rules have changed and currently you can only sell physical goods, so your eBook will have to be on a CD. Personally, I think it’s a good move, and opens up many possibilities.

Don’t forget that Ezines and Newsletters are the Grand Daddy and Grand Mommy of all website visitor attraction and list building activity. The thing is this – Ezines and Newsletters work!

If you love your niche product, you’ll have LOTS to say about it, and there will be people who want to hear what you have to say. I built a subscriber of almost 3,000 with a business coaching Newsletter.

Another way to get visitors to your websites is to write an ebook. I’m not embarrassed to say that we’re not talking great literature here. We aren’t talking about the Pulitzer Prize. We’re not even talking more than, maybe, 30 pages, double spaced, and size 12 font.

But the fact is this: your eBook will attract visitors to your website single-handedly.

Later, you can provide your eBook to affiliates so that they send visitors to your site as well! If you’re more of an audio expert than a novelist, why not create a podcast? Uh? Well, a podcast is a series of audio files that is distributed over the Internet to iPods and other music players and personal computers. This is the future – and it’s fun!

The fact is, everyone loves information but don’t always find printed pages the best way to get it. If you can provide the same information that can be played on an iPod or similar media player, or a mobile phone, you’re offering a higher value product.

You needn’t start from scratch – you can plug your product or service almost immediately by converting your existing articles or eBooks into .mp3 recordings. (.mp3 is the industry standard audio format that is widely accepted for iPods, mobile phones etc.) Remember, you have, on your hard drive, stuff that you have written, or will write, that you can add value to by converting it into an .mp3 recording.

Again, it’s the basics that are often the key to increasing your visitor traffic, so you might need to shine your light on your meta tags. (To put it briefly, a “meta tag” is used by search engines to allow them to more accurately list your site in their indexes.

To be honest, it works most of the time, but not always! Search engines are always changing their methods, and some use Meta tags a lot, while others don’t, but I would not want to neglect this technique. It is a small piece of the mosaic that completes the whole visitor traffic picture.

How many times have you wanted to speak your mind? Well, now you can – and it’ll help drive visitors to your website. How? Leave testimonials on other people’s sites. This won’t take you a second, but your web address will be around for years. Go for it. It is so simple, and so little done.

Another technique I used to attract visitors was to write a priority email to customers with an attention-grabbing subject such as “The Top Ten Myths In Your Industry.” Or, provide something like this as a freebie. Make certain that there are clear links to your website, and a compelling reason for the reader to visit.

Finally, I don’t think YouTube needs much introduction! It’s simply one of the largest websites devoted to online videos covering every single subject you can think of – and more! So how can you use the power of YouTube to get more visitors? Simply this: upload a video of you talking about your niche.

Many cheap digital cameras have a video option – and you do not need a high-end movie camera. You could get a friend to film you. Or, you could use a built in camera on your PC or Mac, if your model has one. Aim to talk for not much longer than 10 minutes maximum, and sign off with your website address. Again, this is much easier than you would think.

Remember, so many people focus on one traffic building technique, and one only. I hope I’ve shown you that there are many ways – and you should have fun with all of them. My best to you.

The Advantages Of Linux Server Hosting

Sunday, March 8th, 2009

Even with a huge amount of information about modern technologies as well as our daily use of computer equipment and software, most people are unaware of the differences in scripting languages and the variety of web hosting services available. Many may not even understand what web hosting or scripting languages mean!

In the simplest of terms when a business or individual has decided to create a website they will more than likely require the services of a web hosting company. Web hosts own the server equipment that keeps all of the data and files necessary for the site to run, look and perform as the website owner desires. The data and files are all going to be written with special programs and languages which are recognizable by computers around the world. Currently the two most common platforms are Linux and Windows.

There are reasons that a business or individual will need to know which of the platforms their hosting provider uses including the design of an existing site, the need for certain functions or applications and their own budget constraints.

The advantages of using Linux server hosting will generally include:

Compatibility – Linux web hosting allows for a full range of integration or compatibility with other operating software or applications. The software can run easily on a Windows server, while the reverse is not so easily done. Additionally, many of the most commonly used databases and applications work smoothly in Linux. This also means tons of stability.

Cost – Linux software is totally free for developers to use or modify as they require. This is not just the operating software but all of the other applications that have been written for it. This translates to entire suites of server applications that can be downloaded and put to use on the server at no additional costs.

Ease of Use – Linux initially earned a reputation as a bit more complicated than the familiar Windows OS, but today web developers and software writers have made the Linux applications incredibly easy to use and even modify for customized functions.

Security – The jury is still out on this issue, but most experts acknowledge Linux as the least prone to security issues and also the OS that delivers the most guaranteed amounts of uptime.

There are clearly many advantages for choosing a Linux server hosting provider, but the real key to knowing if it is the right choice for your needs is to simply compare it to the work that may have all ready been done for your site – if it is primarily Windows software or applications you may want to choose a Windows provider, but the beauty of Linux is that is perfectly capable of using the Windows language as well.