Hey all, Is there a script somewhere that will spider my site and tell me how many pages internally that have a pagerank? I am thinking of selling one of my sites/domains and would like to know this... I know there are several deep pages with PR, I just need to know which ones and the value. Thanks!
You could try http://www.iwebtool.com/visual_pagerank Depending on your site structure/size you could upload a sitemap that lists all the pages, and then use the iwebtool on that page. A bit trickier if you have thousands of pages though.
I find it easier to make a text file listing of all of my pages with the `find` command and then use this quick PERL script to print the PR of each page: #!/usr/bin/perl use locale; use WWW::Google::PageRank; my $pr = WWW::Google::PageRank->new(); my $url = shift; my $rank = $pr->get($url); print "PageRank: " . $rank . " " . $url . "\n"; Code (markup): I usually run the output though `sort`, because I am usually only interested in the high PR pages.
Thank you! That is very close to what I needed. It only did 2001 pages, and only went a few levels deep, but thats ok. Thanks again.
Awesome! Thank you very much, zexy. I was actually looking for something very similar recently, myself. Fortunately (or unfortunatley) I don't have quite so many pages on my websites so it didn't take all that long to completely spider everything.