Autoblogging via RSS with WP-o-Matic

I’ve previously discussed my experiences and experiments with autoblogging (autopopulation of blogs via an RSS feed). While I am not convinced that any blog so produced will be of any use, the concept of “content for nothing” fascinates me so I play with it every now and then.

Today I am playing with the WP-o-Matic plugin for WordPress. Out of the box, it is a bit broken, but Eli Sand’s suggested fixes helped me to get it working. Here is what he suggested:

  1. I am just trying this plugin out and you have a few issues.

    On line 334 of wpomatic.php, you have hardcoded “wp_rssfeeds” as the table name - it should be replaced with {$this->dbfeeds} instead (I do not use wp_ as my table prefix).

    Also, your tables that you create should be these (rather than what you have used:

    CREATE TABLE `{$this->dbfeeds}` (
    `id` bigint(20) unsigned NOT NULL auto_increment,
    `title` varchar(255) NOT NULL,
    `feedurl` varchar(255) NOT NULL,
    `lasthash` varchar(255) NOT NULL,
    `active` tinyint(1) default ‘1′,
    `frequency` int(5) default ‘1′,
    `sourceattribution` tinyint(1) default ‘1′,
    `lastparsed` timestamp,
    PRIMARY KEY (`id`)
    );

    CREATE TABLE `{$this->dbcategories}` (
    `id` bigint(20) unsigned NOT NULL auto_increment,
    `catid` bigint(20) unsigned NOT NULL,
    `feedid` bigint(20) unsigned NOT NULL,
    PRIMARY KEY (`id`)
    );

    The difference being that I have switched them to use BIGINT’s for the id’s (more info can be stored), and your VARCHAR’s can support up to 255 characters, so no point in limiting to just 250.

My first effort at a semi-successful WP-o-Matic autoblog was Mobile Computing. I originally set it up to take a feed from ezinearticles.com’s RSS feed directory - and the reason I call it semi-successful was that Mobile Computing only autopopulated with article summaries rather than full feed from ezinearticles.

So I experimented - next stop was a known full feed - my own blogs. What I did was add the feed from this blog (Facibus Reviews) to Mobile Computing. Sure enough, the full feed (rather than just a summary) came through. This leads me to think that ezinearticles.com’s feed is summary-only by default - this makes sense, I suppose that they don’t wat to be the one-stop source for autoblogs.

There are authors who publish full RSS feeds - most of them, really - but this raises the issue: where do I get a full feed for an autoblog with author permission? If I was an idiot, or prepared to fully embrace the Dark Side, I would just autoblog my favourite feeds - but I can’t see the point (or the profit) in this. So I looked at alternatives to ezinearticles.com:

  • IdeaMarketers selected themselves out of this trial because they want $9.95 a month for total access to their article library.
  • ArticleFever only provides a full feed to all of their articles (not individual topic categories suitable for a niche blog) and only summaries at that - not suitable for autoblog fodder (and that is probably the way they like it)
  • Gekoe has no discernable RSS feed.

So what would I do if I wanted to take this concept further? If I had no qualms about content thievery I’d point WP-o-Matic at a few of the top 100 blogs in the desired niche (whatever that niche is) or at a technorati query feed.

But at this stage, I am left to ask this question: are there any full-feed article repositories out there?

Do you know how to set up your blog for RSS feeds and autoblogging? Check with your ASP hosting provider if you’re not sure. They may be able to give you tips, whether you use a Windows hosting company or more advanced Unix hosting services.


Related Posts


If you enjoyed this post, make sure you subscribe to my RSS feed or add it to
Del.icio.us | Digg | Technorati | reddit




11 Responses to “Autoblogging via RSS with WP-o-Matic”


  1. 1 Jeri (20 comments.)

    Hmm… something you said caught my attention.

    I have my feed set to full. I’ve been wondering if it would be better to have it set to partial - to trigger click-thru so:

    1 - folks are exposed to my site-based advertising (I haven’t implemented feed-based ads), and
    2 - prevent anyone from re-using my articles in full on their own site?

    I’ve already had the latter done once - and as a CC NC-SA licenser I don’t mind if it’s for personal use but do mind if it’s on a for-profit site.

  2. 2 AndrewBoyd (222 comments.)

    Hi Jeri,

    thank you for your comment.

    I can see where you’re coming from - I worry about content theft as well. That said, everything I’ve seen indicates that full feed is best. I generally read RSS feeds (including two of your blogs :) ) from my Nokia e61 phone, so it is a nuisance to have to go to a site that may not be optimised for mobile browsing to read the rest of an article - I prefer full feeds.

    Yaro Starak has a section on full vs summary feeds in his Blog Profits Blueprint ebook.

    Best regards, Andrew

  3. 3 Tony (1 comments.)

    I found this post while doing some research on autoblogging. I have only recently set up a website using Wp-o-matic on Wordpress. Basically, the website is an attempt to merge ALL blogs from my country into one Super blog.

    I currently have over 200 feeds feeding the website. I merged all the feeds into one “super feed” using Gregarius hosted on a different directory. I then make use of the single merged super feed to populate the wordpress blog via wp-o-matic.

    I did inform all the blog owners about what I was doing with their feeds and so far received only one complaint. However I’m still concerned about the implications of this kind of technology as regards legality and ethics especially since I plan to duplicate this technique for other niches.

    The sites are:

    The Nigerian Super Blog (Uses the super feed)

    Blogger Nation (Generates the super feed)

  4. 4 AndrewBoyd (222 comments.)

    Hi Tony,

    thank you for your comment. It is a brave move to take on a whole country’s blogs - I can see a time where there could be a thousand, then ten thousand, then a million blogs in Nigeria :) I wish you well with your endevour.

    Best regards, Andrew

  5. 5 Josh (1 comments.)

    Besides the point that publishing another sites full articles without permission is unethical, what action can be taken against the offender? I have been thinking about this idea for about two weeks now and just now came across wp-o-matic. It appears to be exactly what I am looking for. I thought about building my own solution but why reinvent the wheel? Now I am nervous about copyright infringement and being unethical.

  6. 6 AndrewBoyd (222 comments.)

    Hi Josh,

    thank you for your comment.

    There was a discussion on the Australian blogs community about content theft and what to do about it.

    I think that we can always choose to be ethical - wp-o-matic makes it easier to be unethical, but you can still choose where your feeds come from, and whether to attribute the source or not.

    Best regards, Andrew

  7. 7 zestead (1 comments.)

    I had recently using wp-o-matic, but it seems so many duplicate content problems

  8. 8 Goobernutz

    Maybe I’m naive, but I don’t see the point. Unless it’s to gain a few more adwords pennies here and there. A real-world analogy would be a commercial only television station. Who in their right mind would watch it when they could just watch the entire show on a different channel that’s only a click away.

    Am I missing something obvious here about the usefulness of this plugin?

  9. 9 AndrewBoyd (222 comments.)

    Hi Goobernutz,

    thank you for your comment.

    It is really useful for setting up a summary page of other people’s work without actually stealing it - the case in point for me is the Blogging in the News page - I can display a customised news feed.

    Those that use it for pure content theft (that is, representing other people’s work as their own) are using a good tool for a bad purpose. It is arguable that the tool makes the crime easier, absolutely, but I blame the user not the tool.

    Best regards, Andrew

  1. 1 The Power of Autoblogging: WordPress and RSS Feeds using WP-o-Matic » Chimp-Simple Publishing
  2. 2 Autoblogging with WP-o-matic revisited at Facibus On Blogging

Leave a Reply