WP content generation plugin?

Status
Not open for further replies.

mmitdd

New member
Jul 30, 2007
30
0
0
Hi guys,

Is there a WP plugin (or combination of plugins) that can set the content creation process completely on autopilot?

For example:

- It scraps keyword-specific content from different internet sources like EzineArticles.com, Yahoo Answers, RSS feeds, other blogs etc

- It strips out any HTML from the content (hyperlinks, images, code etc)

- It enters the content into a MySQL database and rewrites it by using spin methods, Markov, synonyms etc

- It automatically hyperlinks any keywords I have specified in advance to URLs I have specified in advance

- It posts the new content on the blog.

I have found some plugins that do parts of the above, but in general they are crap. Either they use javascript to "fool copyscape.com", they are very server-intensive because they don't use a MySQL database to rewrite once and "hard code" the content on the blog, etc etc.

I already know about WP-O-Matic, Caffeinated Content, Gocodes etc - but is there any way to make the above idea work seamlessly?

Or, if you can code something like that, PM me and we can talk :music06:

Thanks in advance...
 


Uses the WordPress::Post module on CPAN to post the contents of all the .txt files in the current directory as posts with random dates. If the date is in the future then it's scheduled by wordpress as a future post.

Code:
#!/usr/bin/perl

use strict;

use Data::Dumper;
use WordPress::Post;

my $o = WordPress::Post->new ({
  proxy => 'http://blogurl.com/xmlrpc.php',
  username => 'admin',
  password => 'PASSWORD'
});

while (<*.txt>) {
  my $title = $_; $title =~ s/\.txt$//;
  open A, "<$_";

  my @file = <A>;
  my $contents = join "", @file;
  my $date = sprintf("%04d%02d%02dT%02d:%02d:%02d",
    2000 + rand() * 9,
    1 + rand() * 12,
    1 + rand() * 28,
    rand() * 24,
    rand() * 60,
    rand() * 60);

  $o->post({
    title       => $title,
    description => $contents,
    categories  => ['category1'],
    dateCreated => $date
  });

}
Takes an HTML page and prints out the sections that are probably content, in plain text:

Code:
#!/usr/bin/perl


use strict;
use Data::Dumper;
use HTML::TreeBuilder;

$ARGV[0] or die "Need filename";

my $tree = HTML::TreeBuilder->new_from_file($ARGV[0]);
my @p = $tree->look_down("_tag" => "p",
  sub {
    length ($_[0]->as_text) > 50 and
      $_[0]->as_text =~ /\./ and
      $_[0]->as_text !~ /(copyright|http)/i  and
       scalar (my @a = $_[0]->look_down("_tag" => "a")) /
        scalar ( my @foo = split /\s+/, ($_[0]->as_text)) < .1;
  });

print map {$_->as_text} @p;

$tree->delete();
The Markov and scraper stuff to generate the pages is fairly straightforward, it's mostly shell scripts trying together a bunch of other little scripts. It's been a couple of years since I've touched that code. The above two scripts were the ones I remember being the most helpful.

Sean
 
I have a fully built custom system that basically will find me targeted shopping keywords within a niche and then auto-gen content and other things based on these keywords. in a few minutes I can have a 50k post unique store/blog

however it aint for sale until I can figure out how I can milk it more by selling it than using it.
 
I have a fully built custom system that basically will find me targeted shopping keywords within a niche and then auto-gen content and other things based on these keywords. in a few minutes I can have a 50k post unique store/blog

however it aint for sale until I can figure out how I can milk it more by selling it than using it.

Good luck bro?
 
does it have to be a plugin? Or would you settle for something that is server based, and can post to all the free wp sites, blogger.com etc?
 
Ok wf programmers...there's obviously a huge demand for this (there's been threads asking for this as long as I can remember)....so what's the hold up? Seems like someone would have already done it if were doable.
 
it HAS been done, turbo, just not as a plugin - that way you can run freebie sites on other people's wp mu's, blogspot, tumblr etc.
 
Status
Not open for further replies.