GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Any good bulk pagerank checker? (https://gfy.com/showthread.php?t=1053361)

bloggerz 01-13-2012 01:15 AM

Any good bulk pagerank checker?
 
Hook me up! :pimp

facialfreak 01-13-2012 02:35 AM

pagerank has been obsolete for a while now ...

even Google's 'private' pagerank is no longer a part of their algo ...

social media 'reach' as well as page load speeds are major factors in indexing now ..

Nurgle 01-13-2012 03:46 AM

the guy asks a question if u dont have the answer who cares what u think?

http://pagerank.my-addr.com/ should do the trick for you mate

Antonio 01-13-2012 06:21 AM

Scrapebox - buy it ... like now

u-Bob 01-13-2012 06:53 AM

https://theeasyapi.com/services

fris 01-13-2012 08:34 AM

Quote:

Originally Posted by bloggerz (Post 18686040)
Hook me up! :pimp

shell script maybe?

example

Quote:

[fris@fris ~]$ ./pr.pl adobe.com pornhub.com sex.com xtube.com
http://adobe.com has a PageRank of 9
http://pornhub.com has a PageRank of 5
http://sex.com has a PageRank of 0
http://xtube.com has a PageRank of 4

magicmike 01-13-2012 09:05 AM

scrapebox is great for all the bulk tools, alexa, pr etc.

fris 01-13-2012 09:23 AM

here is the perl code

Code:

#!/usr/bin/perl

# bulk page rank checker
# usage: pr.pl domain1.com domain2.com domain3.com

use WWW::Google::PageRank;
my ($pr, $rank, $url);

if (defined(@ARGV)) {
for (@ARGV) {
  $url = $_;
  $url = "http://" . $url if ($url !~ /^http:\/\//);
  $pr = WWW::Google::PageRank->new();
  $rank = $pr->get($url);
  print "$url has a PageRank of ";
  if (defined($rank)) {
      print "$rank\n";
  }
  else {
      print "UNDEFINED\n";
        }
  }
}

else {
  print "You must specify a URL ...\n";
}

exit;


TheSquealer 01-13-2012 09:25 AM

Scrapebox FTW!

bloggerz 01-13-2012 11:43 AM

thanks guys!


All times are GMT -7. The time now is 06:50 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc