Search This Blog

Tuesday, June 2, 2009

Easily Submit Sitemap to Yahoo

This post would in simple steps explain how to get yahoo index all your Blogger pages.And 

keep the yahoo bot coming back often.




So lets jump to the steps........

1.     Go to Yahoo Site Explorer



2.    Click on the 'Sign in' link which is at the top of the page,see the screenshot below(If you don't have a Yahoo id, you can get one Yahoo Id here) and sign into your accoutnt.

click on the 'sign in link'

3.     Type your blog url in the box provided as shown in the below screenshot.Don't forget to replace the 'yourblogurl' with the original url of your blog and click on the 'Add My Site'

4.     After adding your site,you need to Authenticate(Verify your ownership).
There are two ways to verify your ownership.One is to upload a file to the root directory of your site .This option is not be possible in blogger.

Another one is to 'adding a metatag' which is possible and the only way to verify ownership for bloggers.First,copy the metatag..

Next,sign in to your blogger account>Edit html and paste the metatag below the head tag and SAVE THE CHANGES,look at the screenshot below.

Next,you will get a message saying that 'Your site is pending authentication'

Note:Don't remove the metatag,they will revalidate your ownership by checking your ownership regularly.

5.Next,go back to the 'Site explorer home', and check the box next to your blog url and click on the Manage button.

6.Type rss.xml or atom.xml in the box provided.It helps yahoo to discover more of your site content via your rss or atom feeds and to index your blog pages quickly whenever your blog is updated.Next,click on the add feed button.




That's it.Now,you have sucessfully submitted your blog sitemap to yahoo.Check your account 

after a couple of days and you will see your blog indexed in yahoo search engine.or even better if 

you add a yahoo badge on your blog with every view of your site you will know the 

trackbacks this even increses the probability of yahoo indexing your site.You may find it in the 

left sidebar badges section of Yahoo site Explorer

Note:-
I myself had a problem when adding the meta tag given by yahoo . but was able to save the template by changing the end tag: 

> to this: />

Template then parsed and saved, Hope this helps..

Any Problems you can ask through the comments form

Rotating Ad Banner for Blogger

Rotating Ad Banner Javascript is here for you friends where you can use javascript to show various Ad banners on same space by rotating it in timely banner. It will be very helpful for those who sometimes feel short of space to show there advertisers.As this is very helpful to show off different ads in timely manner .

How It Looks..

Here is the javascript below which is very easy to use:-

Just copy the codes from below and paste to your

As usual ..LAYOUT > ADD PAGE ELEMENT > HTML/JAVASCRIPT


<script type="text/javascript">
var imgs1 = new Array("http://your Image Link Here.gif","https://your Image link.gif","https://Image Link.gif","https://Image Link","http://image Link");
var lnks1 = new Array("http://www.linkworth.com/?a=15034","http://Clickable Link here","http://Clickable link","http://Clickable Link","http://Clickable Link");
var alt1 = new Array();
var currentAd1 = 0;
var imgCt1 = 5;
function cycle1() {
if (currentAd1 == imgCt1) {
currentAd1 = 0;
}
var banner1 = document.getElementById('adBanner1');
var link1 = document.getElementById('adLink1');
banner1.src=imgs1[currentAd1]
banner1.alt=alt1[currentAd1]
document.getElementById('adLink1').href=lnks1[currentAd1]
currentAd1++;
}
window.setInterval("cycle1()",9000);
</script>
<a id="adLink1" href="http://Your First  link" target="_blank">
<img id="adBanner1" border="0" width="125" src="youir Image Link here" height="125"/></a>


INSTALLATION

1) Links
are urls that your images direct to in Banner. So change them according to your images.
2) Links in 
green are the web address to images so modify them.
3) 
var imgCt1 = 5; in brown is 5 i.e total no of images you using so change it to how many images you are using.
4) window.setInterval("cycle1()",
9000); in orange is 9000 is the ime interval at which time the banner changes to adjust it according to your needs.
5) Height and width are 125 the size of default add you are using to start load.

Enjoy guys It's done