How do I Ping Google

Discussion in 'Google' started by tick20045, Apr 7, 2009.

  1. #1
    How do i ping google to "tell" it i have new content on my website.
     
    tick20045, Apr 7, 2009 IP
  2. rjianchao

    rjianchao Peon

    Messages:
    183
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Sorry,I don't know.

    I use wordpress.
     
    rjianchao, Apr 7, 2009 IP
  3. magda

    magda Notable Member

    Messages:
    5,197
    Likes Received:
    315
    Best Answers:
    0
    Trophy Points:
    280
    #3
    Something like ping-o-matic will ping google blog search.
    For the more regular google bot, you'll have to rely on a well-placed link somewhere that gets crawled often and an up-to-date sitemap in Webmaster Tools.
     
    magda, Apr 7, 2009 IP
  4. tick20045

    tick20045 Peon

    Messages:
    169
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #4
    whell tyx ... i hoped it works like yahoo
     
    tick20045, Apr 7, 2009 IP
  5. AlexiaGold

    AlexiaGold Peon

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Create some backlinks to the new content, Google will find you ...
     
    AlexiaGold, Apr 7, 2009 IP
  6. amerigohosting

    amerigohosting Peon

    Messages:
    255
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    create a sitemap which includes your new content.
    Log into google webmaster tools, and submit(re-submit) your sitemap.
    Build a few links to the content (ie: reddit.com)
     
    amerigohosting, Apr 7, 2009 IP
  7. JessieJames27

    JessieJames27 Active Member

    Messages:
    1,652
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    78
    #7
    Why do you want your site to be pinged?

    You can use online pinging tools like ping-o-matic and autopinger. But for tons of links to be pinged, blog baster is great, It is a pinging software that can ping bunch of sites at the same time.
     
    JessieJames27, Apr 7, 2009 IP
  8. teenwolf41

    teenwolf41 Peon

    Messages:
    372
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Look into pinger or pingomatic. Remember to only ping when there's new content.
     
    teenwolf41, Apr 7, 2009 IP
  9. leomedina01

    leomedina01 Well-Known Member

    Messages:
    447
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    110
    #9
    For google reading and crawling your blog feed, you can also visit http://blogsearch.google.com/ping or you can add http://blogsearch.google.com/ping/RPC2? to the Update Services in your WordPress Dashboard under Options->Writing.

    Regarding to sitemaps, you can use this php function below:

    
    
    <?php
    /**
    * Reenvia o endereço de um sitemap ao Google por meio de uma solicitação HTTP.
    *
    * @author Alejandro Fernandez Moraga
    * @link http://www.moraga.com.br/
    * @param string $sitemap Endereço do sitemap
    * @return bool|string
    */
    
    function ping_google($sitemap) {
    
    define('HOST', 'www.google.com');
    
    $sitemap = (stripos($sitemap, 'http://') !== 0) ? 'http://'.$sitemap : $sitemap;
    
    if (!@file_get_contents($sitemap))
    return 'Sitemap not found at '.$sitemap;
    
    if (!$fp = @fsockopen(HOST, 80, $errn, $errstr))
    return "{$errstr} ({$errn})";
    
    $request = 'GET /webmasters/sitemaps/ping?sitemap='.rawurlencode($sitemap).
    " HTTP/1.1\r\nHost:".HOST.
    "\r\nUser-Agent: Mozilla/5.0 (compatible; ".PHP_OS.")\r\nConnection: Close\r\n\r\n";
    
    fwrite($fp, $request);
    
    while (!feof($fp))
    if (preg_match('@HTTP\/\d.\d\s([0-9]{3})\s(.*)@', fgets($fp, 128), $response))
    break;
    
    fclose($fp);
    
    if (empty($response[1]))
    return 'response headers not found';
    else if ($response[1] != 200)
    return "{$response[1]} {$response[2]}";
    
    return true;
    }
    
    ?>
    
    <?php $ping = ping_google('www.mysite.com/sitemap.xml');if ($ping !== true) {	//Ocorreu um erro	echo $ping;}?>
    
    
    PHP:
    (source: http://www.moraga.com.br/50/sitemaps-e-ping-google-em-php)
     
    leomedina01, Apr 7, 2009 IP
  10. bluebenz

    bluebenz Well-Known Member

    Messages:
    876
    Likes Received:
    9
    Best Answers:
    2
    Trophy Points:
    138
    #10
    Great tips.
    But if you don't have a wp website, you can ping google using ping-o-matic.com or pingler.com.
    Great services from that people.
     
    bluebenz, Apr 7, 2009 IP
  11. ezinequeen

    ezinequeen Peon

    Messages:
    132
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Nice information..thanks dear...

     
    ezinequeen, Apr 7, 2009 IP
  12. scutt

    scutt Peon

    Messages:
    34
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    make your own script pinged to ping-o-matic , I have something like this on the web
     
    scutt, Apr 7, 2009 IP
  13. BlackhatVault

    BlackhatVault Banned

    Messages:
    262
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #13
    social bookmark your new content with sites like digg, propellar, stumble upon. Google seems to index these sites every minute. That will help you to let google you have added some fresh content.
     
    BlackhatVault, Apr 8, 2009 IP
  14. rlydv

    rlydv Peon

    Messages:
    173
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #14
    use pingomatic.com to ping Google and other sites for faster indexing of your website
     
    rlydv, Apr 8, 2009 IP
  15. silviyagomes

    silviyagomes Peon

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    You can ping google that you have new content in your site by submitting the sitemap.xml in the webmaster tools.
    This sitemap.xml is for the bot of google and from here it can know very well that the new content is updated and many more things.
    Anyhoe, this is the best way to ping google about your new content.
     
    silviyagomes, Apr 8, 2009 IP