1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to Ping Search Engines?

Discussion in 'Search Engine Optimization' started by bushib, Sep 17, 2007.

  1. neilhoja

    neilhoja Peon

    Messages:
    31
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #21
    is there any html code i can use for my blog? i dont understand the php code.. :confused:

    I'm sorry but I'm noob here..
     
    neilhoja, Sep 19, 2009 IP
  2. simple_person_india

    simple_person_india Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #22
    This thread was very useful to understand about pinging search engines. I have a website where new products are added every day. But the new product pages get crawled many months later or some never even get crawled by search engines.

    I heard about Pinging and I wanted to know what URL should I ping every time a new product page is created? Should I ping www.mywebsite.com or should I ping www.mywebsite.com/newproductlink1, www.mywebsite.com/newproductlink2 and so on?

    Any advice would be appreciated. Thanks in advance.
     
    simple_person_india, Oct 16, 2009 IP
  3. neilhoja

    neilhoja Peon

    Messages:
    31
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #23
    does it mean, if we ping rss it also ping the se?
     
    neilhoja, Nov 2, 2009 IP
  4. affwise

    affwise Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #24
    More info on sitemap pinging:

    catanich.com/sitemap-ping-services.asp
     
    affwise, Nov 13, 2009 IP
  5. Saiduly

    Saiduly Peon

    Messages:
    120
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #25
    as a noob question what is ping?
     
    Saiduly, Nov 13, 2009 IP
  6. affwise

    affwise Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #26
    In the context of this trhread, a ping is just a signal sent, usually from a blog to a search engine or a ping service to tell it that it's been updated.

    When the SE or ping service receives the ping it sends a spider out to see whats new.
     
    affwise, Nov 14, 2009 IP
  7. neelamets

    neelamets Peon

    Messages:
    123
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #27
    Thanks for post.
     
    neelamets, Nov 14, 2009 IP
  8. affwise

    affwise Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #28
    can you share clear info, how to use this?

    Well, as a minimum, you can create a php file with those few php lines of code. Call it ping.php.

    Replace the websitedomain details with your own website name, and sitemap.xml name.

    Upload the file and just open it in your browser.

    When you open the file in your browser you won't see anything but the hourglass will display while the script works. When its finished, the cursor will change to the default setting.

    I will knock up a more user friendly version later and upload.
     
    affwise, Nov 14, 2009 IP
  9. affwise

    affwise Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #29
    OK, here's a basic script to do this.

    Just upload it -call it whatever-you-want.php

    Open it in your browser, then enter a url in the field and click the button.

    It might not always work depending on your server etc.

    Hope you find it useful

    
    
    <?php
    ////////////////////////////////////////////////////////////////////// 
    // This script is provided without any support. Use at your own risk /
    // You are free to use it, improve it or redistribute it.            /
    // Please leave this notice intact                                   /
    // Gerry - affwise.com												 /
    // Thanks                                                            / 
    //////////////////////////////////////////////////////////////////////
    
    $website = $_POST["website"];
    // You can add or edit array contents
    $arr = array(
    "http://www.google.com/webmasters/sitemaps/ping?sitemap=$website",
    "http://search.yahooapis.com/SiteExplorerService/V1/updateNotification?appid=YahooDemo&url=$website",
    "http://submissions.ask.com/ping?sitemap=$website"
    );
    $num = count($arr);
    ?>
    <HTML>
    <HEAD>
    <TITLE> Sitemap Submitter </TITLE>
    </HEAD>
    
    <BODY>
    <br /><br /><br /><br /><br />
    <center>
    <?php if ($_POST["submit"]){?>
    
     <?php echo"<table width=\"90%\" border=\"1\">";
    	ignore_user_abort(TRUE);
    	for ($i = 0; $i < $num; $i++) {
    		$row  = $arr [$i];	
    			if(file_get_contents($row))	{
    				
    				echo"<tr><td width=\"20%\">Success:-</td><td> $row</td></tr>";
    				}else{
    				
    				echo"<tr><td width=\"20%\">Failed:-</td><td> $row</td></tr>";
    				}
    
    		flush();
    		set_time_limit(100) ;
    	}
    ?>
    </table>
    <p>You can submit another URL...</p>
    <p>
    <form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="POST">
    Enter URL to submit: (There is <b>no need</b> to add the http:// part of the URL)<br><br> <input style="width:500px" type="text" name="website"><br><br>
    <input type="Submit" name="submit" value="Submit"><br><br>
    </form>
    </p>
    
    <? }else{ ?>
    	
    <p>Use this script to submit your sitemap to Google, Yahoo and Ask.</p>
    <form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="POST">
    Enter URL (There is <b>no need</b> to add the http:// part of the URL)<br><br> <input style="width:500px" type="text" name="website"><br><br>
    <input type="Submit" name="submit" value="Submit"><br><br>
    </form>
    	
    <? } ?>
    Script courtesy of <a href="http://affwise.com">affwise.com</a>
    </center>
    </BODY>
    </HTML>
    
    PHP:
     
    affwise, Nov 14, 2009 IP
  10. c1onejohn

    c1onejohn Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #30
    c1onejohn, Aug 15, 2010 IP
  11. doormarket

    doormarket Guest

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #31
    thanks for all the information guys....i never thought of it could be done so easily....:)
     
    doormarket, Aug 16, 2010 IP
  12. jerinjames

    jerinjames Peon

    Messages:
    20
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #32
    I don't use ping . . . how does this help in getting good SERP and how does it done?
     
    jerinjames, Aug 16, 2010 IP
  13. MVM83

    MVM83 Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #33
    Hi!
    I am a running a news website. We publish news as it happens. Can some one tell me how to inform search engines when a new page is published? To do this manually is not possible. I am looking for a automated ping software which can ping to search engines whenever a new page is published by us. Do some one know this type of software or any other method using which i can inform search engines on real time rather waiting for search engines to crawl my pages because this is news website.
    Regards.
    MVM83
     
    MVM83, Oct 9, 2010 IP
  14. golfpro1

    golfpro1 Peon

    Messages:
    3,058
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #34
    If you open up an ms-dos prompt window and simply type "ping urlofsearchgine" you will ping them (or any site for that matter)
     
    golfpro1, Oct 10, 2010 IP
  15. zinruss

    zinruss Notable Member

    Messages:
    3,288
    Likes Received:
    237
    Best Answers:
    0
    Trophy Points:
    270
    #35
    1. Blog platform, cms, shopping cart have this function in-build. You don't have to ping search engines manually

    2. I don't use any other method to ping search engine. Most of the time, i use the power of social bookmarking and spider will come to you. Off course, a sitemap is a must.
     
    zinruss, Oct 10, 2010 IP
  16. zohaibahmed

    zohaibahmed Peon

    Messages:
    20
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #36
    Thanks for sharing such a useful information.
     
    zohaibahmed, Oct 10, 2010 IP
  17. usasportstraining

    usasportstraining Notable Member

    Messages:
    4,876
    Likes Received:
    363
    Best Answers:
    0
    Trophy Points:
    280
    Articles:
    4
    #37
    There are an assortment of really good ping tools. I prefer Pingler and Pingomatic, as they are regularly updated.
     
    usasportstraining, Oct 10, 2010 IP
  18. MVM83

    MVM83 Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #38
    I am looking for auto submission. It is not possible for me to visit these sites and put my url to ping bcoz there are so many content writers are writing for this website and i can not pig each page individually. A software has to be there who is on my server. Whenever a new page is published immediately it should ping to all the search engines. Software should be on my server. Kindly guide me on this.
     
    MVM83, Oct 10, 2010 IP
  19. echovme

    echovme Peon

    Messages:
    65
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #39
    I dont know how to ping the search engine. Now I am learn from this thread. Thank you for all for sharing a good information
     
    echovme, Oct 10, 2010 IP
  20. Atco-maart

    Atco-maart Peon

    Messages:
    435
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #40
    You can try with this URL - Blogsearch.google.com/ping
     
    Atco-maart, Oct 11, 2010 IP