Posts

Showing posts from February, 2013

Add Pinterest Pin It button with Counter to Blogger

Image
Pin It button allows your readers to share your posts without having to leave your blog. It pulls all available images from a post and lets them choose which image to pin. It also comes with an optional counter that displays how many times a blog post has been pinned. Adding Pin It button to Blogger post This Pin It button goes to the top or bottom of a post. It comes with a counter that displays how many times a blog post has been pinned. Here are the steps: Go to  Template > Edit HTML . Back up your template. Check the Expand Widget Templates checkbox on top right of the HTML window. Look for the following data tag in your HTML. This is the tag for the post content: < data:post.body /> Normally there are two instances of the tag present in your template. Locate the  the first  (from top) one.  Paste the following code immediately below (after) it: <!-- Pinterest button Start by BloggerSentral.com --> <b:if cond='data:blog.pageType == &

Add Facebook Like Button To Blogger Posts

Image
As we all aware facebook is one of the largest social media company in the word.If your blog have any fan page then it will help you a lot in increasing traffic on your blog. Here I am giving all types of facebook like buttons codes. i.e. vertical count,horizontal count and without count.You can add this button just below of of post tile and below of the post.Just follow my instructions carefully.... Note  - This button will not like your fan page it will like and share your  post How To Add Facebook Like Button To Blogger Posts? Go to Blogger Dashboard > Design > Edit HTML First take a backup of your template Tick   the expand widget check box Find for below code in your template <data:post.body/> If you wish to add like button j ust below of post title  the  add the below code just before  of <data:post.body/> and if you wish to add this like button  just below of your post  then add below code just below of   <data:post.body/> F

Windows Server 2003 interview and certification questions

How do you double-boot a Win 2003 server box?  The Boot.ini file is set as read-only, system, and hidden to prevent unwanted editing. To change the Boot.ini timeout and default settings, use the  System  option in  Control Panel  from the  Advanced  tab and select  Startup. What do you do if earlier application doesn’t run on Windows Server 2003? When an application that ran on an earlier legacy version of Windows cannot be loaded during the setup function or if it later malfunctions, you must run the compatibility mode function. This is accomplished by right-clicking the application or setup program and selecting Properties –> Compatibility –> selecting the previously supported operating system.  If you uninstall Windows Server 2003, which operating systems can you revert to?  Win ME, Win 98, 2000, XP. Note, however, that you  cannot upgrade from ME and 98 to Windows Server 2003 . How do you get to Internet Firewall settings?  Start –> Control Panel –> Network and I

Can't locate Net/SNMP.pm in @INC

If you get error " Can't locate Net/SNMP.pm in @INC" while executing a perl script , and in your script syntax is as below, where Net::SNMP module is in use. use strict; use Net::SNMP; use Getopt::Long; Then use the following step to install Net SNMP Solution :-- Login as a Super user (root) user on machine.  Login to CPAN shell with following command. #perl -MCPAN -e shell cpan> install Bundle::CPAN cpan[1]> reload cpan  cpan[1]> reload index cpan[1]> install Net::SNMP  cpan[1]> install Getopt::Long cpan> exit Terminal does not support GetHistory. Lockfile removed. # After all this try to execute your script ..hopefully your problem will be resolved.