noname boy
Newbie
- Nov 9, 2010
- 36
- 1
Would you ever read an auto black hat post?
Would you ever read an auto black hat post?
Hi
I wanna setup 500 autoblog sites, but i have to install wp plugins and config the site again and again..
for example: i active the wprobot plugin, and fill the amazon api ,clickbank infor etc... but how to cloner the setting? so i don't need to set it again.
I tried wordpress cloner, it sucks.
is there an easy way to install so many blogs?
Thanks
Hi
I wanna setup 500 autoblog sites, but i have to install wp plugins and config the site again and again..
for example: i active the wprobot plugin, and fill the amazon api ,clickbank infor etc... but how to cloner the setting? so i don't need to set it again.
I tried wordpress cloner, it sucks.
is there an easy way to install so many blogs?
Thanks
I own big farm of autoblogs ...
Then put this code in .php file:
Code:<?php $url = 'http://YOUR-SITE.net/aaa011.tar.gz'; $dir = './'; function downloadRemoteFile($url,$dir,$file_name = NULL){ if($file_name == NULL){ $file_name = basename($url);} $url_stuff = parse_url($url); $port = isset($url_stuff['port']) ? $url_stuff['port'] : 80; $fp = fsockopen($url_stuff['host'], $port); if(!$fp){ return false;} $query = 'GET ' . $url_stuff['path'] . " HTTP/1.0\n"; $query .= 'Host: ' . $url_stuff['host']; $query .= "\n\n"; fwrite($fp, $query); while ($tmp = fread($fp, 8192)) { $buffer .= $tmp; } preg_match('/Content-Length: ([0-9]+)/', $buffer, $parts); $file_binary = substr($buffer, - $parts[1]); if($file_name == NULL){ $temp = explode(".",$url); $file_name = $temp[count($temp)-1]; } $file_open = fopen($dir . "/" . $file_name,'w'); if(!$file_open){ return false;} fwrite($file_open,$file_binary); fclose($file_open); return true; } downloadRemoteFile($url,$dir); exec("tar xvfz aaa011.tar.gz"); ?>
aaa011.tar.gz is your master blog archive on main server.
This script download it to remote server (move files).
So, install this script on server where you want to move blog (install new one) and just run it.
Next is to set database....
it's works??Amazing!!If this can help (I've done it and it works fine) :
1-You install WP 3.0.1
2 - You enable the multiblog Network option
To do this :
Open up wp-config.php and add this line above where it says /* That's all, stop editing! Happy blogging. */:
3 - Create as many blogs as you wantCode:define('WP_ALLOW_MULTISITE', true);
4 - Activate WP Robot for each blog
Optional 5 - Modify the WP robot form file to have your default values in the form
Personally I'm going to write a script to do all these steps automatically...
Now Imagine you put your main Keyword in a form, you just click, and..
It creates 100 auto blogs using scrapped keywords from your main keyword to set your Subdomain name, blog Title, and content..
Gonna be fun heh.