Alexa Ranking Script

Status
Not open for further replies.
my success with this script....

my first site 2,000,000++ to 736,363
my second site 1,635,213 to 887,819
 
I'm trying out this thread-posted Alexa script on each of my pages.... will update on any progress.

My previous success with Alexa boost was using this simple html page rotator script below, and let it run 24/7 on a single machine with the alexa toolbar installed. Took the site from 8,000,000 to 250,000 with marginal other web traffic. I didn't code this but if you search for alexa ranking script on google you should find the source. Also... I couldn't post the whole script since I can't post links yet... so you'll have to modify the script with your pages... 1-19

Hope it helps those experimenting with this. Like this forum, waiting for more access though... hopefully this post will speed things up.

<html>
<head><title>PR</title>
<SCRIPT LANGUAGE="JavaScript1.2" type="text/javascript"><!--
function reload(){
var strI=document.stored.Arrayvalue.value;
var str = new Array(20);
// insert target URLs between quote marks in array items below.
// To add or remove the total number items in the array, add
// lines to or remove lines from the array below and
// modify the number in "Array()" above and "strI" below to
// be one greater than the last "str[]" value below.
str[1] = "yoursite dot com/";
str[2] = "yoursite dot com/page1.php";
... repeat to str[19]


if( strI==20){
strI=1;
}
else{
URL=str[strI];
window.open(URL,'EC');
strI++;
}
document.stored.Arrayvalue.value= strI;
var intNumber=Math.round(Math.random()*45000);
if(intNumber<5000){intNumber=intNumber+5000;}
setTimeout("reload()",intNumber);
}

//-->
</script>
</head><body onLoad="reload();">
<form name="stored"><input type="Text" name="Arrayvalue" value="1"></form>
</body></html>
 
Hi friends,

I can't access the script. Sorry to trouble u guys. Would some kind soul PM me the script? Many thanks!
 
Anyone get $$$RESULTS$$$ from this script? I mean has this led to anyone making any money? Advertising, traffic, etc?
 
Anyone get $$$RESULTS$$$ from this script? I mean has this led to anyone making any money? Advertising, traffic, etc?

I think the point is to get an inflated Alexa ranking so advertisers who for some reson care about it will advertise with your site. Several PPC ad networks won't accept your site if it doesn't rank highly in Alexa, so until they wise up, it helps to have a good Alexa ranking for that purpose alone.
 
so what's the deal on this script? does it help with Alexa rankings? anyone got any solid results with it?
 
so what's the definitive deal on this script? does it give solid results as far as Alexa is concerned?
 
Can someone pls sent me the script?

Why? what have you given in return, if you need it become a donor and you'll get it...

Tony
 
I wonder how long it will take before Alexa starts taking measures. Can a site getting banned by Alexa?
 
Hello Professionals,
Can some one put this script in rapidshare or file hosting, since there are many junior memmbers who cant download the attachments.

And can some tell me how to use this script in blogger.com ...please help me out.

Comments are invited,
 
Interesting stuff. I'm just getting into this black hat shiz, but this is pretty cool. I'll let you know my progress. Thanks.
 
If someone would post a download link to the file, I would be happy. I just joined the forum and I would appreciate a link. I'm not sure why, though. How do you monetize an alexa ranking? - Susan
 
Here the code... Have a fun...

Code:
/* Short and sweet */
session_start();
function alexa($url) 
{
  $url="http://".$url;
  $domain    = "http://data.alexa.com";
  $keylength = 14;  // the resulting length of the keyid.  14 and 15 were seen in the wild.
    
  if (isset($_SESSION['alexa_keyid'])) $keyid = $_SESSION['alexa_keyid'];
  else 
  {
    $keyid     = substr(str_shuffle("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"),0,$keylength);
    $_SESSION['alexa_keyid'] = $keyid;
  }
    
  $cli       = "10";           // ???
  $dat       = "snba";         // ???
  $ver       = "7.2";          // version number of toolbar?
  $cdt       = "alx_vw";       // ???
  $wid       = rand(0,32767);  // appears to be a random integer initiated when the browser starts.
  $act       = "00000000000";  // ???

  if(isset($_SESSION['screen_size'])) $ss=$_SESSION['screen_size'];
  else
  {
   $ssarray   = array ("800x800", "1024x768", "1280x768", "1280x800","1280x1024", "1600x1200", "1680x1050", "1920x1200");  
  shuffle($ssarray);
   $ss        = $ssarray[0];    // browser screensize.  Resulting value is chosen at random from an array of values.
   $_SESSION['screen_size']=$ss;
  } 



  $bw        = "1523";         // bandwidth? probably used in calculating metrics related to visitor connection speeds  (noted values are close to common
                                 // connection speeds like 768k, 1mb, 1.5mb, etc.)
  $t         = "0";            // ???
  $ttl       = rand(200,1000); // time-to-live?  probably used in calculating average load times
  $vis       = "1";            // ???

  if(isset($_SESSION['tb_request'])) 
  {
    $rq=$_SESSION['tb_request']+1;
    $_SESSION['tb_request']=$rq;
  }
  else
  {
   $rq       = rand(15,80);    // appears to increment with each toolbar request
   $_SESSION['tb_request']=$rq;
  } 

$params="/data/".$keyid."?cli=".$cli."&dat=".$dat."&ver=".$ver."&cdt=".$cdt."&wid=".$wid."&act=".$act."&ss=".$ss."&bw=".$bw."&t=".$t."&ttl=".$ttl."&vis=".$vis."&rq=".$rq."&url=".$url;
    
    return $domain.$params;    
}

======================================================================================

Footer

<?="<img src='".alexa($_SERVER['HTTP_HOST'])."' height='0' width='0'>";?>
 
Status
Not open for further replies.
Back
Top