Black Hat Forum
Go Back   Black Hat Forum > Black Hat SEO Forum > Cloaking and Content Generators

Cloaking and Content Generators Discuss Cloaking, Doorway pages and Automatic content generators for search engine optimization

Search
 
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 09-12-2008, 07:46 PM
Newbie
 
Join Date: Aug 2008
Location: UK
Posts: 39
Thanks: 19
Thanked 4 Times in 2 Posts
Activity: 12%
Longevity: 8%
Today: 0/5
Default SMF 1.1.6 Content Generator?

Is there any avaliable cracked & working SMF content generator or even a desktop content generator?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 09-14-2008, 06:11 PM
scb335's Avatar
Junior Member
 
Join Date: Mar 2008
Posts: 108
Thanks: 59
Thanked 54 Times in 26 Posts
Activity: 32%
Longevity: 23%
Today: 0/5
Default Re: SMF 1.1.6 Content Generator?

I don't know of any that are available, but with the SSI includes it isn't hard to create one. I did a while back for a movies database site so that anytime a new movie or actor was added to the main site a new discussion thread would be created on the forum for it.

The basic PHP code was something like this:
Code:
include_once('/home/path/to.../forum/SSI.php');
require_once($sourcedir . '/Post.php');
require_once($sourcedir . '/Subs-Post.php');

$topicOptions = array(
		'id'		=> 0,   // 0 = New Topic otherwise Topic id to reply..
		'board'	=> 22,  //What board to post on.. User doesn't even need rights to view it..
		'mark_as_read'	=> false,
		);
$posterOptions = array(
		'id'		=> (isset($ID_MEMBER) ? $ID_MEMBER : 0),
		'name'		=> 'Add Name',
		'email'		=> 'webmaster@yourdomain.com',
		'ip'		=> $forummsg['IP'],
		'update_post_count'	=> 0,
		);
$msgOptions = array(
		'id'		=> 0,
		'subject'	=> 'Add your post title here',
		'body'		=> 'Your post message goes here.',
		);

createPost ($msgOptions,$topicOptions,$posterOptions);
If you can pull content from an rss feed or some other source and place it into PHP variables you could use the above code to insert that content into your forum and auto-populate it pretty easy.

Hope that helps.

edit: just thinking of this now it might be a great way to add content for small niche minisites. Build a forum on the site, create a number of member accounts, seed the content from multiple rss feeds related to your site niche and add some random function to the code above for randomly making the posts from those multiple member accounts you created so it doesn't look like just 1 person posting everything.

LOL looks like I've got a project for this evening now
__________________
Date... touch... unzip... strip... finger... mount... gasp... yes... uptime... Unix is hot

Last edited by scb335; 09-14-2008 at 06:17 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to scb335 For This Useful Post:
ijake (09-16-2008)
  #3 (permalink)  
Old 09-15-2008, 12:13 AM
Registered Member
 
Join Date: Aug 2008
Posts: 70
Thanks: 5
Thanked 12 Times in 10 Posts
Activity: 1%
Longevity: 9%
Today: 0/5
Default Re: SMF 1.1.6 Content Generator?

great little piece of code scb335

as for your little project you could also use Inst*adigi Co*ntent Ge*nerator
this could save you some time..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 09-15-2008, 12:18 AM
scb335's Avatar
Junior Member
 
Join Date: Mar 2008
Posts: 108
Thanks: 59
Thanked 54 Times in 26 Posts
Activity: 32%
Longevity: 23%
Today: 0/5
Default Re: SMF 1.1.6 Content Generator?

Well, I like the freedom to tinker and existing scripts tend to be limiting. You can always modify them I suppose, but to me that's harder then starting from scratch.

I've already got a first draft of this script running on my personal server, it can pull content from 5 different sources, posts to multiple boards and uses multiple member accounts for thread starting as well as replies from 2 of the sources.

Can Inst*adigi Co*ntent Ge*nerator do that too? I haven't looked into it and don't know.
__________________
Date... touch... unzip... strip... finger... mount... gasp... yes... uptime... Unix is hot
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 09-15-2008, 02:04 PM
Registered Member
 
Join Date: Aug 2008
Posts: 70
Thanks: 5
Thanked 12 Times in 10 Posts
Activity: 1%
Longevity: 9%
Today: 0/5
Default Re: SMF 1.1.6 Content Generator?

of course it is not as customized as your own script.
it was just an advise to save you some work

when you are a good programmer... ( you seem to be) it's always better to write your own sricpts.
can i contact you for some work btw..?
i need software and scripts all the time...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 09-15-2008, 02:12 PM
wayne756's Avatar
Registered Member
 
Join Date: Apr 2008
Posts: 79
Thanks: 45
Thanked 7 Times in 3 Posts
Activity: 30%
Longevity: 19%
Today: 1/5
Default Re: SMF 1.1.6 Content Generator?

Perhaps this mod can help:

Rss Feed Poster

http://custom.simplemachines.org/mods/index.php?mod=624
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 09-16-2008, 06:51 PM
scb335's Avatar
Junior Member
 
Join Date: Mar 2008
Posts: 108
Thanks: 59
Thanked 54 Times in 26 Posts
Activity: 32%
Longevity: 23%
Today: 0/5
Default Re: SMF 1.1.6 Content Generator?

Thanks wayne756, I saw that but decided to go a slightly different route with mine for more control over using multiple member accounts from the forum for automated posting. There's nothing worse then visiting a forum with thousands of posts only to find they all came from 1 account... my script is using tons of accounts now for creating threads, and tons of additional accounts for adding replies to appear more natural.

@kouxx, and I appreciate the input. Sorry it took me so long to reply, lost power Sunday evening and am on a generator now just checking in on things, so progress has slowed until the lights are back.

Feel free to contact me about small coding projects you might have, I don't do much freelance work these days but if you have small stuff you need I may be able to help you out once in a while.
__________________
Date... touch... unzip... strip... finger... mount... gasp... yes... uptime... Unix is hot
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 09-17-2008, 08:36 AM
wayne756's Avatar
Registered Member
 
Join Date: Apr 2008
Posts: 79
Thanks: 45
Thanked 7 Times in 3 Posts
Activity: 30%
Longevity: 19%
Today: 1/5
Default Re: SMF 1.1.6 Content Generator?

That is great. I hope I can do that too, I got very limited php knowledge though

By the way, is it similar to ICO content for SMF?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 09-18-2008, 11:06 PM
scb335's Avatar
Junior Member
 
Join Date: Mar 2008
Posts: 108
Thanks: 59
Thanked 54 Times in 26 Posts
Activity: 32%
Longevity: 23%
Today: 0/5
Default Re: SMF 1.1.6 Content Generator?

wayne756, the PHP coding isn't really that intricate. All you really need is a little research at PHP net on the basic functions for strings (for manipulating the feed content) and SimpleXML (for getting and parsing the rss feeds).

Then it's just a matter of basically using what I posted above for adding the feed content to the forum database as postings and replies.

I'm also working on ways to manipulate some of the content which doesn't violate the publisher's TOS or AUP's so that there's a level of uniqueness to the output without it crossing the line too far.

I've had a slow-down because of the power loss (damn you hurricane Ike) but will get this finished in the next couple days after I catch up with work and I'll share a version of it here.
__________________
Date... touch... unzip... strip... finger... mount... gasp... yes... uptime... Unix is hot
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Add Your Link



Site protected by Firewall Script


Sitemap: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54