Posts Tagged ‘postings’

5 Steps to Building an Autoblog

Welcome to my blog, please feel free to subscribe to my RSS feed, join me on Twitter or leave a comment.

autoblogging 5 Steps to Building an Autoblog image

Autoblogging is the process of automating blog’s for your business, while some in the industry make be critical of the process there are actually a number of cases where autoblogging makes perfect sense such as a news relay services, real estate agents or even recipe or automotive websites. At it’s most basic level, autoblogging is about taking common repetitive tasks and making them easier for website owners.

For example, a real estate website could automatically pull postings from their local MLS listing service and create effective web posts on a realtors blog about each properly by listing information and pictures for visitors, this type of auto blogging is fairly common in the industry and saves agents countless hours of copy and pasting listing details from other websites.

Let’s take a look at how to run an effective auto blogging package, it takes a little experience and technical knowledge but these may be easily overcome by hiring web professionals such as myself for the more complicated parts of the process.

Install WordPress

Step one of course is to install WordPress, a great and flexible blogging package which happens to be free. You can download WordPress directly and install it on your web host of if you’re less technical you can setup your hosting with BlueHost and use their automated process to easily install WordPress with a quick click of your mouse.

Install Appropriate Plugins

Plugins are add ons to WordPress, they’re like super powered steroids that make WordPress do extra stuff. In this case, you’ll need to download and install FeedWordPress to make WordPress import RSS feeds from around the Internet.

What’s an RSS feed? Well simply put, it’s geek speak. RSS feeds are used to let one computer or software program talk to another, basically it’s a specially formated file that tells one website about the content of another website. You’ll need to use it to automatically pull content from one website to display on other.

Now, to make sure you’re really cutting down on your workload, there are a few more plugins that you’ll need. See, FeedWordPress will fetch thousands of posts … some are duplicates and many need proper keywords etc. so lets add a couple awesome plugins to make your life a little easier.

WP Auto Tagger will add keywords to each post automatically, this helps cut down the work you’ll have to do to each post.

Delete Duplicate Posts is a quick way to make sure you don’t have duplicate posts in your database.

Setup Your Feeds

Now that you have your blog setup and running, you’ll need to add feeds from popular sources to automatically populate your blog. For example, you may wish to add a feed from Google for blog posts featuring my name. To do this, let’s search Google Blog for Christopher Ross and take a look at the results. On the left hand column, we see a link for RSS. This link offers us the ability to copy and paste the link http://blogsearch.google.com/blogsearch_feeds?hl=en&client=safari&oe=UTF-8&um=1&q=%22Christopher+Ross%22&ie=utf-8&num=10&output=rss into FeedWordPress. Once this is done, your website will scan the blogshere on a schedule, looking for all new posts about Christopher Ross. You can do the same with Google News, to ensure you always know what’s happening.

Manage Posts

When you setup FeedWordPress it asks if you’d like posts to be held for moderation or posted, it’s best to always hold posts for moderation while you’re getting used to the system and make notes of things you need to delete or edit before they go live.

Advance WordPress users will also be able to build special functions into their websites to automate complex parts of the process. For example, I use the CRON services on BlueHost to automatically run a series of scripts on many websites, which scans newly added posts for content, URL’s and items to skip or delete. If you don’t have access to CRON services, the WordPress plugin U-Cron will do a similar service for you.

Common Corrections

My scripts for example, run a simple WordPress function every 15 minutes:

[source lang="php"]$wpdb->query("UPDATE `www_greatchefs_com`.`wp_posts` SET `post_date` = ‘".date(‘Y-m-d H:i:s’)."’,
`post_date_gmt` = ‘".date(‘Y-m-d H:i:s’)."’,
`post_modified` = ‘".date(‘Y-m-d H:i:s’)."’,
`post_modified_gmt` = ‘".date(‘Y-m-d H:i:s’)."’ WHERE `post_date` < ‘2000-01-01 00:00:00′;
");
[/source]

This simple script scans the WordPress database for any post with a date prior to January 1st, 2000 and automatically changes it to the current date. This saves me hours of manually updating posts and makes posting to client websites dramatically faster.

After my scripts have tested for and corrected the majority of minor, common issues I automatically move the post from Pending to Draft which indicates the post is ready for me to review and if I want, post it live.

Approval

The final step of auto blogging and one that I believe is often overlooked is the final approval of an article. Personally, I believe it is critical that people (not machines) do a final scan of each article being posted and ensure it is accurate, maybe this isn’t true auto blogging but it’s impossible for robots to ensure everything is right so a quick scan of the article will ensure that you’re sharing the right information with your target audience.

Who is Auto Blogging Right For?

There are a lot of industries that autoblogging simply wouldn’t work for. For example, I would never want to automate my website here to scan for WordPress articles but I do believe that scanning trusted data sources and automatically processing listings for car dealerships, financial reports, real estate, news services, syndicated news etc. is a wonderful use of RSS and auto blogging technology.

Shameless self promotion – If you’re thinking about automating your online presence, why not give me a call or drop me an email and I can help you make the best choices for your blog.

10 WordPress Plugins I Couldn’t Run a Site Without

Before I give you my real list, let me tell you that there are some basics that don’t even deserve to make this list because if you’re running a blog without them, you’re simply working too hard. Plugins like Askimet, WP Lockdown, Theme Switcher, WordPress.com stats, the WordPress.com stats smiley remover and WordPress Database Backup.

Delete Duplicate Posts WordPress Plugin

Simply put, this plugin does exactly what it’s name implies. It gives web masters like me the opporunity to quickly scan tens of thousands of postings in databases to ensure there are no duplicates. It’s wonderfully powerful when you have a thousands of feeds to maintain, and only a few hours to do it in. It also happens to be from my close friend, Montreal web designer Christopher Bavota.

WP Auto Tagger

Oh man … I can not stress what a dream this plugin is. Tags are like keys to SEO gold, they’re one of the few things that a blog owner can do well and immediately see amazing results in the search engines but they’re such a pain in the ass to write. Basically a tag is what your article is about, but in popular single words and catch phrases. What WP Auto Tagger does is great, it breaks down your article and suggests the best tags, automatically. That’s a huge time saver.

Syntax Highlighter

This bad bay is the Jonas brothers of WordPress plugins. Sure it’s fairly pointless and a text editor could do the same job but when it comes to saving time (and money) it’s brilliant. What it does is takes a bunch of rough gobbly gook code like this:

$rss = fetch_rss( $url );
$pcount = 0;
$storycount = 0;
$textdate = date(“F jS”, mktime(0, 0, 0, str_pad($month, 2, “0″, STR_PAD_LEFT), str_pad($day, 2, “0″, STR_PAD_LEFT), $year));

echo $textdate;
foreach ($rss->items as $item) {

if (!$first) {$title = $item['title'];$first=1;

$content .= “<h3><a href=’”.$item['link'].”‘ title=’”.$item['title'].”‘>”.$item['title'].”</a></h3>”;
$content .= “<p>”;

if ($item['link_enclosure']) {
$content .= “<a href=’”.$item['link'].”‘ title=’”.$item['title'].”‘><img alt=’”.$item['title'].”‘ src=’”.$item['link_enclosure'].”‘ class=’alignleft’></a>”;
}

and turns it into …

[source lang="php"]$rss = fetch_rss( $url );
$pcount = 0;
$storycount = 0;
$textdate = date("F jS", mktime(0, 0, 0, str_pad($month, 2, "0", STR_PAD_LEFT), str_pad($day, 2, "0", STR_PAD_LEFT), $year));

echo $textdate;
foreach ($rss->items as $item) {

if (!$first) {$title = $item['title'];$first=1;

$content .= "<h3><a href=’".$item['link']."’ title=’".$item['title']."’>".$item['title']."</a></h3>";
$content .= "<p>";

if ($item['link_enclosure']) {
$content .= "<a href=’".$item['link']."’ title=’".$item['title']."’><img alt=’".$item['title']."’ src=’".$item['link_enclosure']."’ class=’alignleft’></a>";
}
[/source]

When it comes to saving time, that’s a huge helper.

WP Super Cache

It simply terrifies me how many people are not running this plugin or a similar flavor of it. It makes your site safer, easier to manage and much faster for the end user. I’ll also mention that by running it you can use a host like BlueHost for $7.95 a month to run dozens of websites instead of spending hundreds a month to run just one site on complex, over priced servers.

Enforce www. Prefix

Actually, I’m going to cheat here and tell you that this and Canonical URL’s are plugins you should have for massive SEO curb appeal. Basically Enforce www. Prefix forces your website to always use the correct SEO address and Canonical URL’s tell’s Google that your article is the source, so even if people repost it you get credit.

Google XML Sitemaps

We all want Google to come to our site right? Well, let’s make it easy for them! Sitemap will provide Google with a free pass to all your content, no matter how deep your links are.

Get Image from Post

People love pictures and with this simple plugin your website will be able to post pictures as part of your excerpt. Speaking of excerpts, Get Better Excerpts will allow you to pull complete sentences or words from your excerpts.

SEO Friendly Images

Between this and SEO Smart Links, I’ll be honest most websites are on auto pilot. The SEO Friendly Images ensures your images have the proper tags to make the most of search engines, while Smart Links adds valuable data to your hyperlinks.

WordPress Admin Quick Menu

quickmenu 10 WordPress Plugins I Couldnt Run a Site Without imageI might be a little bias but this is truly my favorite plugin. It allows you to add your own menu items to the WordPress Admin client, basically creating shortcuts between your website and important things like AdSense and Analytics. It’s completely customizable and saves endless frustrations between myself and clients but providing them immediate access to critical links.

Download Counter

Just like Analytics lets you know who’s visiting and where they’re going, you’ll want to track what people are downloading from your website and how often. This saves a fortune in report generation time, by simply allowing me to tell my clients weekly how often software has been downloaded.

Five SEO Scams to Avoid

There’s no magic bullet to help you build your online business. There I said it. It’s out there on the Internet now and there’s nothing I can do to take it back. You’d be amazed how many people I meet or talk to who believe they’ve found The One.

There are a lot of ways to tell if a Search Engine Optimization firm is legit, but here are five guaranteed signs that the company (or person) you’re dealing with is scamming you:

Guaranteed Search Results

There are exactly three companies in the world who can guarantee you top quality SERP (Search Engine Result Page) results. They are:

  1. Google
  2. Yahoo
  3. Microsoft

Anybody else that tells you they can guaranteed top quality organic search results is trying to separate you from your money and usually at an inflated rate. There is absolutely no way to guarantee making it onto the first page of a major search engine unless you’re dealing with Matt Cutts and I’m pretty sure he’s not taking bribes.

If it looks like a duck …

Quality SEO work is not cheap. My blog here has a PageRank of 5. That’s really good for a personal website. Want to know how I did it? It’s all here on my blog. It’s a lot of hard work, more hard work than most people can imagine. It’s about sifting through hundreds or thousands of pages on your website and tweaking every one of them so if somebody says they can do if for cheap, they’re simply lying.

Organic Results

An organic results is a non paid result. Google listings for example are organic unless you’re paying for an ad placement on the SERP’s. Make sure that the company that you’re hiring isn’t running paid links or postings on unrelated pages to artificially bolster their results. Frankly, scamming people with fake results is too easy so make sure you keep your eye on the Queen. 

Their Own Secret Formula

There is no secret formula. Honestly, there’s no such thing as a secret formula to SEO. Search Engine Optimization is real, but there is no secret to it. In fact, you can do it yourself if you have the time and knowledge. Read this, in fact read any article by Darren Rowse and then if you’re still confused buy his book. Here’s the secret in a nutshell:

  1. Write content people want to read
  2. Make sure you understand the basic structure of HTML
  3. Make sure you understand the two meta tags
  4. Repeat

OK fine, there’s a bit more to it than that or his book wouldn’t sell but for free I’ll give you this advice … as soon as your SEO firm tells you they have a secret formula, run.

Paid Links

Do you know what Google hates more than a gopher in the garden? Paid links. I promise you, paying for links will get your website slapped so fast you won’t know see the light of day for a month. How do I know this? Because I listen to the people who work there

The way I read it, the people at Google take pride in what they do and their whole corporate mantra “do no evil” actually appears to be true. I used to think Google was just a robot, spidering the Internet looking blindly for content. Then I discovered that Google was a company made up of people, and those people took a lot of pride in what they do, that led me to understand that Google was like any gardener … if you try to steal their carrots, you’ll get a shovel on your furry little head.