Skip to main content

Improving your website or blog traffic with Google Webmaster tools

Google webmaster tools are very helpful in improving your website or blog presence over the Internet. For normal website statistics the best tool you could use is Google analytics as it has a rich analytic tools.

In this article I will go through the steps you need to follow to add your website or blog to Google webmaster tools:

  1. Login to your Google webmaster tools
  2. On the dashboard add your website URL as shown in the photo below:



  3. Now its time to verify that this site or blog belongs to you, this can be done by copying the verification code you see after you pressed on continue, copy the code and past it as instructed to the header tag in your index page of your website or your blog template, to do this on blog: press on the blog Layout tab an on the sub tab edit HTML, then add the tag inside <head> and then save.
  4. Go back to the webmaster tools and press on verify. Now your site or blog should be verified.
  5. Its time to Index your site on sitemaps, this will advance the existence of your site in Google search. To do so you need to have a site map or Atom feed. If you run a website and you don't have Atom feed download freely the site builder on your PC and add your website and create index, this should be a simple process. In case you have a blog the default feed on the blog is atom and you can find it at the bottom of your blog on the link Subscribe to: Posts (Atom) copy the link of the Atom feed, then on the site map submit the link to the atom feed this should be: feeds/posts/default .After submitting the index the site will be verified and index in few seconds. For websites owners after you create site index in xml format please upload it to your website and add the file to the sitemaps.
If you have more than website or blog you may do the same for each one of them. Please note that this will allow you to access freely a very good tools to analyse your content and your website ups and downs.

If you have any question please comment.

Comments

Popular posts from this blog

Coldfusion Facebook Graph API publish to your wall and your friends walls

In this tutorial we will learn by full coldfusion Graph API code example how to publish on your wall and your friends walls. This application uses new oauth authentication method. The code is divided into four files: we will first start with a file called index.cfm: <cfoutput>         <!--- Your FB application IDS --->       <cfset api_key = ""/>     <cfset secret_key = ""/>     <cfset appID = ""/>     <!--- create a connection to the fb graph cfc --->     <cfset graphCFC = createObject("component", "graph").init(#appID#, #api_key#, #secret_key#) />     <!--- If user is authenticated or his access token is set create a cookie --->        <cfif not isdefined("cookie.access_token") and isdefined("url.access_token")>         <cfset cookie.acce...

Implementation of Facebook Graph API in Coldfusion

Facebook has launched a new FB API called Graph that simplifies FB applications development, the new Graph API allows website owners to create Single Sign On (SSO) with Facebook and allow websites owners to be able to import a lot of users information but after their permissions. The code below written in Coldfusion gives an example on how to Create FB login/logout button and then how to retrieve the created cookie, and use it for further development:     <body>   <cfoutput>     <!--- Your FB application IDS --->     <cfset api_key = "XXXXXXXXXXXXX"/>     <cfset secret_key = "XXXXXXXXXXXXXX"/>     <cfset appID = "XXXXXXXXXXXXXX"/>     <!--- Facebook login/logout button --->     <p><fb:login-button perms="email,user_birthday" autologoutlink="true"></fb:login-button></p>     <!--- Facebook login/logo...

The New Facebook Wall Publishing method Stream.publish

As recently facebook stopped supporting the feedstory publishing method to publish news on users wall and application developers from now on can't create feed templates. Facebook released a new methods to do so which are: FB.Connect.streamPublish stream.publish Facebook.streamPublish I figured out those new methods when I was building a new facebook application yesterday to predict who will win the soccer match between Egypt and Algeria tonight. It took me sometime to succeed in publishing the story on the wall, so I will share with you my experience and how I solved it out in Coldfusion. As I build my applications using the work of Andrew Duckett who created the Facebook Rest Client Component , I will start from FacebookFBMLCLient.cfc file which contains the methods that communicates with facebook APIs. As I have used one of the three methods above which sounded the best as I guess, this example will be based on stream.publish method. The first step is to add the following method...