How to install 500 WP blogs easily?

i have create more than 300 wp websites in 1 day just using cpanel and imacros
 
Yeah, I was lookinto something similar......building many blogs at a time.

I would like to hear about the imacros isea from quo vadis.....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

Just copy Ur Folder [include ALL] to another PATH
 
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

Try enabling multi-site with domain redirect on a wordpress installation. There are instructions on WordPress ORG on how to do this, requires some knowledge of copy and paste, and some time. Maybe a separate hosting acct, since it has to be in the root directory.

PM me if you need help, i've set up about a dozen of these multi-sites in the past 6 months. I'm familiar with this setup and the plugins are shared across all sites.
 
Take your time, do it right and speed will kick in naturally after 30 installs.
 
It's been quite a while, has this been figured out and scripted? Just seems like a very tedious task to do it one at a time.
 
you can automate the installation process. but configuring the domains and creating databases is always manual process. You can hire someone to do it for you.
 
Whit what specific name should this php file be saved..? tnx

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....
 
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. */:
Code:
define('WP_ALLOW_MULTISITE', true);
3 - Create as many blogs as you want
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.
it's works??Amazing!!
 
iMacro....

it can do most of work.. I guess all work...

let me know to make code.. :)
 
Back
Top