Google Webmaster Tools : Verification procedure for a Blogger account.

To use the Google Webmaster Tools for your blog, you must first add your blog and allow it to be self verified. This way you tell google, that this ‘site’ is indeed yours.

For a blogger account, the help is given here. If you choose the meta tag verification method for your blogspot blogs, here are the steps to get it verified.

Open your dashboard by visiting blogger.com. Proceed to Settings > Layout > Edit HTML > EDIT Template.

In the code provided copy the <meta> content you picked up from the google’s webmaster tools page. After saving the template, proceed to webmaster page and click on verfiy.

Also to update the sitemap url, proceed to http://yourblog.com/robots.txt copy the sitemap url and update it under Webmaster’s sitemap section.

Kingston Pen drives Technical Support in India

Please do not request for support on this page. Please contact the service centre from the link below or call customer care number provided.

Consumer and Service & Support for Kingston pen drives and other products in India.

Phone: 044 42015215
Toll Free No. 1860 425 4515.

Detailed listing of service centers:

http://legacy.kingston.com/india/support/service_center.asp

Bangalore Service Centre.

re-STORE (A Unit of Aforeserve.com Ltd)
No.2, 1st Floor, Chennakeshava Complex
HAL Airport Road, Marathahalli, Opp. Woodland Showroom
Bangalore-560037
080 42197817, 9611334587, 9945345656

Email id : techsupport_india@kingston.com,techsupport.india@kingston.com

 

Update:

For all those who are asking me to fix your pendrives – I am a not a Kingston service provider. What I have posted here is the list of service centers you can approach with your drive. They would normally check with your drive’s serial number to see if its still in warranty. Replacements are usually delayed due to huge backlogs.

Ubuntu Apache2 : Change default DocumentRoot /var/www

By default the document root folder for apache2 in Ubuntu is /var/www. This is where you can store your site documents.

In order to change the default site location to a different one, /opt/mysite use the following method. A detailed steps to install LAMP on ubuntu is given here.

To do this, we must create a new site and then enable it in Apache2.

To create a new site:

Copy the default website as a starting point.

sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/mysite

Edit the new configuration file in a text editor “sudo nano” on the command line or “gksudo gedit”, for example:

gksudo gedit /etc/apache2/sites-available/mysite

Change the DocumentRoot to point to the new location. For example, /opt/mysite (make sure there is no space in your new folder name; /opt/my\ site/ will not work)

Change DocumentRoot /var/www to  DocumentRoot /opt/mysite

Change the Directory directive, replace <Directory /var/www/> to <Directory /opt/mysite/>

You can also set separate logs for each site. To do this, change the ErrorLog and CustomLog directives. This is optional, but handy if you have many sites

Save the file

Now, we must deactivate the old site, and activate our new one. Ubuntu provides two small utilities that take care of this: a2ensite (apache2enable site) and a2dissite (apache2disable site).

sudo a2dissite default && sudo a2ensite mysite

Finally, we restart Apache2:

sudo service apache2 restart