Is there a site that will give you Google ranking for all your pages?? So you can like print out a list of all your pages in your site, each pages rankings?
go to google and put in the search bar site:sitenamehere.com and it will show you the amount of pages that your on. hope that helps some.
you can do a bulk page rank checker, but i dont know if there are any that spider your site for all page links...cause there can be thousands and thousands of pages especially when talking about forums
If you can run perl program on your machine, you can use this simple perl program yourself: use WWW::Google::PageRank; my $pr = WWW::Google::PageRank->new; $fichIn = "$ARGV[0]"; open( FICH_URLS, "<$fichIn" ); while ( <FICH_URLS> ) { $url = $_; my $valor = scalar($pr->get($url)); $valor = 0 if !$valor; print $valor, " ", $url; } # while (fichero) close FICH_URLS; 1; Code (markup): As program argument you need to type a filename with urls to check.