create a cronjob and execute this script with it, this script will bring you many thousands of users automatically
PHP Code:<?php
ignore_user_abort(true);
set_time_limit(0);
$url = 'http://yourdomain.com/index.php'; //change here
while(1)
{
$s = curl_init();
curl_setopt($s,CURLOPT_URL,$url);
curl_setopt($s,CURLOPT_TIMEOUT,99);
curl_setopt($s,CURLOPT_MAXREDIRS,99);
curl_setopt($s,CURLOPT_RETURNTRANSFER,false);
curl_setopt($s,CURLOPT_FOLLOWLOCATION,true);
curl_setopt($s,CURLOPT_USERAGENT,'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.'.rand(0,time()).')');
curl_setopt($s,CURLOPT_REFERER,'http://google.com/'.rand(0,time()).'');
$content = curl_exec($s);
curl_close($s);
sleep(1);
}
?>



1Likes
LinkBack URL
About LinkBacks
Reply With Quote


... missing from school . \\ read between the lines
And a hundred percent reason to remember the name!
[Only registered and activated users can see links. 



Bookmarks