Is there a site that will give you Google ranking for all your pages??

Discussion in 'Shopping' started by joel2280, Oct 15, 2007.

  1. #1
    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?
     
    joel2280, Oct 15, 2007 IP
    robjones likes this.
  2. littlesitebuddy

    littlesitebuddy Guest

    Messages:
    1
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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.
     
    littlesitebuddy, Oct 16, 2007 IP
    robjones likes this.
  3. Lordy

    Lordy Peon

    Messages:
    1,643
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #3
    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
     
    Lordy, Oct 16, 2007 IP
    robjones likes this.
  4. jkegroup

    jkegroup Peon

    Messages:
    146
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
  5. ajsa52

    ajsa52 Well-Known Member

    Messages:
    3,426
    Likes Received:
    125
    Best Answers:
    0
    Trophy Points:
    160
    #5
    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.
     
    ajsa52, Nov 8, 2007 IP
  6. ajsa52

    ajsa52 Well-Known Member

    Messages:
    3,426
    Likes Received:
    125
    Best Answers:
    0
    Trophy Points:
    160
    #6
    ajsa52, Nov 8, 2007 IP
  7. hawashp

    hawashp Peon

    Messages:
    113
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #7
    it is useful

    see the google index for all pages and look for each page of each page
     
    hawashp, Nov 11, 2007 IP
  8. JohnS0N

    JohnS0N Notable Member

    Messages:
    1,581
    Likes Received:
    63
    Best Answers:
    0
    Trophy Points:
    210
    #8
    JohnS0N, Dec 20, 2007 IP