RodneyTrot
Active Member
This is just an experiment to get a new domain ranked. It creates lots of useless pages with useless keywords, I don't even know if this will work, but you can see it in action at: http://gumday.com/
Script:
Download keywords:
http://gumday.com/random.txt
Also, you can do a mod rewrite to get any subdomain query link to a static page "get.php" and then randomally generate keywords for that pages. Cloak your URL too.
You can scrape millions of keywords (good ones) for better chances of getting ranked.
Script:
PHP:
<?php
set_time_limit(0);
ini_set('memory_limit', '-1');
class Indexer
{
function articles()
{
srand ((double)microtime()*1000000);
$f_contents = file("random.txt");
$line = $f_contents[array_rand($f_contents)];
$line = str_replace(",","",$line);
$line = str_replace("-","",$line);
$line = str_replace(".","",$line);
$line = str_replace(" ","",$line);
$line = str_replace("/","",$line);
$line = stripslashes($line);
return trim($line);
}
function show_web($url)
{
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
function create($pages, $numword, $min, $max)
{
if ($numword == "word") {
$i = 0;
while($i < $pages)
{
$met = $this->articles();
$myFile = trim($met.".php");
$fh = fopen($myFile, 'w') or die("Can't create files.");
$stringData = "
<html><head><meta name=\"description\" content=\"" . $met. "\" />
<meta name=\"keywords\" content=\"" . $met . "\" /><body><h1>" .
$met . "</h1>
<META HTTP-EQUIV=Refresh CONTENT=\"0;URL=http://www.gumday.com\"></body></html>";
fwrite($fh, $stringData);
fclose($fh);
$i++;
flush();
}
echo "We've created your " . $pages . " pages.";
}
}
}
$create = new Indexer;
$create->create('10000000', 'word', '100', '1000')
?>
Download keywords:
http://gumday.com/random.txt
Also, you can do a mod rewrite to get any subdomain query link to a static page "get.php" and then randomally generate keywords for that pages. Cloak your URL too.
You can scrape millions of keywords (good ones) for better chances of getting ranked.