How to make a google page rank script

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • adrianTNT

    #1

    How to make a google page rank script

    Hello;

    Anyone knows how can I create a scrip that returns the google page rank
    of a given web page?

    I have seen this on many web pages but I want to host my own script and
    I dont know how it is made.
    I want it to be something like this:




    So I can give it an url and it says the url page rank from 0 to 10.
    That link doesnt give the full source file for that, only some encoded
    script.

    Thanks.

  • Mike Willbanks

    #2
    Re: How to make a google page rank script

    **tip**
    1) look at the source of that page
    2) write a regular expression to find the pagerank
    3) use sockets (fso) or curl to retrieve the page
    4) cache the result
    5) echo out the page rank

    so then your process is:
    1) user enters domain
    2) regular expression to validate the domain
    3) check if there is a cached result (if true proceed to 6)
    4) connect to the page
    5) run the regular expression for page rank
    6) show pagerank
    [color=blue]
    > I have seen this on many web pages but I want to host my own script and
    > I dont know how it is made.
    > I want it to be something like this:
    >
    > http://www.googlecommunity.com/scrip....adriantnt.com[/color]

    Comment

    • adrianTNT

      #3
      Re: How to make a google page rank script

      I am sorry but I didnt understood any of the steps you mentioned,
      source file is endoded, something about code 64 base.

      Anyone else has ideeas? I am trying to create ascript that returns the
      Google page rank for given URL, value from 0 to 10.

      Thanks.
      -Adrian.

      Comment

      • luke

        #4
        Re: How to make a google page rank script



        hi

        is this not the full script? the author says he's released the source:



        luke




        "adrianTNT" <adriantnt@adri antnt.com> wrote in message
        news:1117214094 .830614.82760@g 14g2000cwa.goog legroups.com...[color=blue]
        > I am sorry but I didnt understood any of the steps you mentioned,
        > source file is endoded, something about code 64 base.
        >
        > Anyone else has ideeas? I am trying to create ascript that returns the
        > Google page rank for given URL, value from 0 to 10.
        >
        > Thanks.
        > -Adrian.
        >[/color]


        Comment

        • Steve

          #5
          Re: How to make a google page rank script


          You will be violating Google's terms & conditions by using this script.
          In addition you are soon likely to get false results as the Google
          developers detect the violation and begin to send nonsense back in
          response to requests. The lifetime of the script is limited because the
          checksum algorithm will be altered to foil the abusers, and there is a
          Magic Number (corresponding to the specific Google Toolbar that was
          reverse engineered/sniffed) hard coded into the algorithm which can
          easily be blocked.

          Sorry.

          --
          Steve

          Comment

          • R. Rajesh Jeba Anbiah

            #6
            Re: How to make a google page rank script

            adrianTNT wrote:[color=blue]
            > I am sorry but I didnt understood any of the steps you mentioned,
            > source file is endoded, something about code 64 base.
            >
            > Anyone else has ideeas? I am trying to create ascript that returns the
            > Google page rank for given URL, value from 0 to 10.[/color]



            --
            <?php echo 'Just another PHP saint'; ?>
            Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com

            Comment

            Working...