<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Bala-Krishna</title>
	
	<link>http://www.bala-krishna.com</link>
	<description>Web Developer &amp; Internet Marketing Consultant</description>
	<lastBuildDate>Tue, 07 May 2013 15:52:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/bala-krishna" /><feedburner:info uri="bala-krishna" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>bala-krishna</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Apache Service Terminated With Service-Specific Error 1 (0×1)</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/Vadc5iWYvUM/</link>
		<comments>http://www.bala-krishna.com/apache-service-terminated-with-service-specific-error-1-0x1/#comments</comments>
		<pubDate>Tue, 07 May 2013 15:52:16 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Error Log]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Window Application]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1098</guid>
		<description>After a long run Apache on my machine suddenly stopped working. I tried everything including removing recently added virtual hosts but nothing worked. I also restored original http conf file but there was no luck. It was hard to guess what is actual issue because service log message was not very much clear enough. I did following steps to figure out exact cause and resolution. I hope this will help readers. 1. Open command prompt and go to Apache bin directory. In my case it was D:\www\Apache22\bin\ 2. Run httpd.exe by typing in the command prompt. 3. Here you will [...]</description>
				<content:encoded><![CDATA[<p>After a long run Apache on my machine suddenly stopped working. I tried everything including removing recently added virtual hosts but nothing worked. I also restored original http conf file but there was no luck. It was hard to guess what is actual issue because service log message was not very much clear enough. I did following steps to figure out exact cause and resolution. I hope this will help readers.</p>
<p><strong>1.</strong> Open command prompt and go to Apache bin directory. In my case it was <strong>D:\www\Apache22\bin\</strong><em></em></p>
<p><strong>2.</strong> Run <em><strong>httpd.exe</strong></em> by typing in the command prompt.</p>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/05/run-apache-from-command-prompt.jpg"><img class="aligncenter size-medium wp-image-1099" alt="run-apache-from-command-prompt" src="http://www.bala-krishna.com/webfiles/uploads/2013/05/run-apache-from-command-prompt-300x108.jpg" width="300" height="108" /></a></p>
<p><strong>3.</strong> Here you will see exact error message. See screenshot above.</p>
<p><strong>4.</strong> According to error message It is clear that some application captured port 80 on which Apache is running.</p>
<p><strong>5.</strong> Now it is time to find out which application it is. Run following command  <em><strong>netstat -ano</strong></em> in the command prompt to see list of application running on port 80.</p>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/05/netstat-ano-command.jpg"><img class="aligncenter size-medium wp-image-1100" alt="netstat-ano-command" src="http://www.bala-krishna.com/webfiles/uploads/2013/05/netstat-ano-command-300x108.jpg" width="300" height="108" /></a></p>
<p><strong>6.</strong> As you can see one service running with PID 4 on port 80. This could be different for different people. Skype also run on port 80 sometimes depend on configuration. So for some people it can be resolve just by configuring Skype on different port. But for me this was not the case.</p>
<p><strong>7.</strong> Process ID 4 belongs to IIS Web Deployment Agent Service usually only start if web matrix installed on system. So for my case I disabled this service as i rarely use web matrix.</p>
<p><strong>8.</strong>  To disable this service Go to <em><strong>Control Panel</strong></em> -&gt; <strong><em>Administrative Tools</em></strong> -&gt; <em><strong>Services</strong></em> -&gt; <em><strong>Web Deployment Agent Service </strong></em> and disable the service. Exit then Start Apache.</p>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/05/web-deployment-agent-service.jpg"><img class="aligncenter size-medium wp-image-1101" alt="web-deployment-agent-service" src="http://www.bala-krishna.com/webfiles/uploads/2013/05/web-deployment-agent-service-300x184.jpg" width="300" height="184" /></a></p>
<p>Apache should start now. You may try the following trick if Apache still fails to start and port 80 not captured by PID 4.</p>
<p>1. Exit from skype and try restarting Apache. If it works then configure Skype on different port. Go to <strong>Tools</strong> -&gt; <strong>Options</strong> -&gt; <strong>Advanced</strong> -&gt; <strong>Connection</strong>. then un-check &#8220;Use port 80 and 443 as alternatives for incoming connections&#8221;.</p>
<p>2. Check virtual host defined in virtual host file. Log folder defined in the virtual host must be exist. If not Apache will throw this error.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=Vadc5iWYvUM:fKfz-6boNxw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=Vadc5iWYvUM:fKfz-6boNxw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=Vadc5iWYvUM:fKfz-6boNxw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=Vadc5iWYvUM:fKfz-6boNxw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=Vadc5iWYvUM:fKfz-6boNxw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=Vadc5iWYvUM:fKfz-6boNxw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=Vadc5iWYvUM:fKfz-6boNxw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=Vadc5iWYvUM:fKfz-6boNxw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=Vadc5iWYvUM:fKfz-6boNxw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/Vadc5iWYvUM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/apache-service-terminated-with-service-specific-error-1-0x1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/apache-service-terminated-with-service-specific-error-1-0x1/</feedburner:origLink></item>
		<item>
		<title>Digsby Yahoo Messanger Authentication Error Fix</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/GpL-WW8_7CU/</link>
		<comments>http://www.bala-krishna.com/digsby-yahoo-messanger-authentication-error-fix/#comments</comments>
		<pubDate>Sat, 06 Apr 2013 11:23:20 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Bug Fix]]></category>
		<category><![CDATA[Social Messenger]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Window Application]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1095</guid>
		<description>If you are facing same issue then you might came to right place. After applying several method including password change, server name and connection method i finally got right fix for the issue. &amp;#160; Yahoo has changed server name. It seems Digsby people not maintaining updates regularly. Digsby default Yahoo server no longer working. My problem was solved by just changing Yahoo server.  To fix the issue simple replace default Yahoo server with new Yahoo server. Default Digsby Yahoo IM Server:  scs.msg.yahoo.com New Yahoo IM Server:  cs213p3.msg.ac4.yahoo.com Hope this help! &amp;#160; &amp;#160;</description>
				<content:encoded><![CDATA[<p>If you are facing same issue then you might came to right place. After applying several method including password change, server name and connection method i finally got right fix for the issue.</p>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/04/digsby.png"><img class="aligncenter size-full wp-image-1096" alt="digsby" src="http://www.bala-krishna.com/webfiles/uploads/2013/04/digsby.png" width="122" height="138" /></a></p>
<p>&nbsp;</p>
<p>Yahoo has changed server name. It seems Digsby people not maintaining updates regularly. Digsby default Yahoo server no longer working. My problem was solved by just changing Yahoo server.  To fix the issue simple replace default Yahoo server with new Yahoo server.</p>
<p><strong>Default Digsby Yahoo IM Server:</strong>  scs.msg.yahoo.com<br />
<strong>New Yahoo IM Server:</strong>  cs213p3.msg.ac4.yahoo.com</p>
<p>Hope this help!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=GpL-WW8_7CU:lS5cUqJuPRw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=GpL-WW8_7CU:lS5cUqJuPRw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=GpL-WW8_7CU:lS5cUqJuPRw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=GpL-WW8_7CU:lS5cUqJuPRw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=GpL-WW8_7CU:lS5cUqJuPRw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=GpL-WW8_7CU:lS5cUqJuPRw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=GpL-WW8_7CU:lS5cUqJuPRw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=GpL-WW8_7CU:lS5cUqJuPRw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=GpL-WW8_7CU:lS5cUqJuPRw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/GpL-WW8_7CU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/digsby-yahoo-messanger-authentication-error-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/digsby-yahoo-messanger-authentication-error-fix/</feedburner:origLink></item>
		<item>
		<title>How to Debug Web Page in Opera Browser</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/OQGJ9CZrSag/</link>
		<comments>http://www.bala-krishna.com/how-to-debug-web-page-in-opera-browser/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 16:00:19 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1050</guid>
		<description>Latest version of Opera browser comes with inbuilt developer tools called Dragonfly similar to Internet Explorer. Dragonfly is fully featured tool equipped with all necessary tool require to debug a web page. Web page debugging was nightmare in the earlier version of Opera. It is an alternative of FireBug for Firefox and Chrome. More is that it is built-in tool so you don&amp;#8217;t need to install it separately. It load DOM and you can change element values if needed. Other features are network traffic monitor, searching and ability, java script debugging, error logging, profiler, console, utility and remote debugging. Remote [...]</description>
				<content:encoded><![CDATA[<p>Latest version of Opera browser comes with inbuilt developer tools called Dragonfly similar to Internet Explorer. Dragonfly is fully featured tool equipped with all necessary tool require to debug a web page. Web page debugging was nightmare in the earlier version of Opera. It is an alternative of FireBug for Firefox and Chrome. More is that it is built-in tool so you don&#8217;t need to install it separately.</p>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/03/opera-dragonfly.jpg"><img class="aligncenter size-medium wp-image-1090" alt="opera-dragonfly" src="http://www.bala-krishna.com/webfiles/uploads/2013/03/opera-dragonfly-300x186.jpg" width="300" height="186" /></a>It load DOM and you can change element values if needed. Other features are network traffic monitor, searching and ability, java script debugging, error logging, profiler, console, utility and remote debugging. Remote debugging feature allow developers to connect with dragonfly from remote devices. Utility tools allow you to take screenshot of web page.</p>
<h3>Dragonfly Shortcut</h3>
<ul>
<li><strong>Menu Option:</strong> Opera -&gt; Page -&gt; Developer Tools -&gt; Opera Dragonfly</li>
<li><strong>Windows:</strong> Ctrl + Shift + I</li>
<li><strong>Linux:</strong> Ctrl + Shift + I</li>
<li><strong> Mac:</strong> ? + ? + I</li>
</ul>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=OQGJ9CZrSag:RnKXd6y2SgM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=OQGJ9CZrSag:RnKXd6y2SgM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=OQGJ9CZrSag:RnKXd6y2SgM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=OQGJ9CZrSag:RnKXd6y2SgM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=OQGJ9CZrSag:RnKXd6y2SgM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=OQGJ9CZrSag:RnKXd6y2SgM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=OQGJ9CZrSag:RnKXd6y2SgM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=OQGJ9CZrSag:RnKXd6y2SgM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=OQGJ9CZrSag:RnKXd6y2SgM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/OQGJ9CZrSag" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-debug-web-page-in-opera-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/how-to-debug-web-page-in-opera-browser/</feedburner:origLink></item>
		<item>
		<title>How to Find Fonts Used in PSD File</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/4AZZaPumJj8/</link>
		<comments>http://www.bala-krishna.com/how-to-find-fonts-used-in-psd-file/#comments</comments>
		<pubDate>Wed, 20 Mar 2013 08:51:45 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1083</guid>
		<description>This is the common problem with developer who usually convert PSD file to HTML. Photoshop display an ugly warning message about the font missing every time I open PSD design file. Sometimes large number of fonts missing in PSD file and sometime few only. It is hard to click on each text layer and note down all missing fonts. Here I am sharing list of possible ways to find out missing fonts in PSD a file. &amp;#160; Method 1 &amp;#8211; Quick and Easy Way To Find Missing Fonts by Character Box Open PSD file in Adobe Photoshop Go to Windows -&amp;#62; [...]</description>
				<content:encoded><![CDATA[<p>This is the common problem with developer who usually convert PSD file to HTML. Photoshop display an ugly warning message about the font missing every time I open PSD design file. Sometimes large number of fonts missing in PSD file and sometime few only. It is hard to click on each text layer and note down all missing fonts. Here I am sharing list of possible ways to find out missing fonts in PSD a file.</p>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/03/font-missing-warning.png"><img class="aligncenter size-full wp-image-1085" title="Some text layers contain fonts that are missing. These layers will need to have the missing fonts replaced before they can be used for vector based output. " alt="Some text layers contain fonts that are missing. These layers will need to have the missing fonts replaced before they can be used for vector based output." src="http://www.bala-krishna.com/webfiles/uploads/2013/03/font-missing-warning.png" width="400" height="136" /></a></p>
<p>&nbsp;</p>
<h3>Method 1 &#8211; Quick and Easy Way To Find Missing Fonts by Character Box</h3>
<ul>
<li>Open PSD file in Adobe Photoshop</li>
<li>Go to <em>Windows -&gt; Character</em></li>
<li>A small character box will display with fonts information.</li>
<li>Select font name dropdown and scroll down till end.</li>
<li>You will notice list of missing fonts in light grey color at the end of font list.</li>
<li>Note down missing fonts name.</li>
<li>See image below for clear picture.</li>
</ul>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/03/missing-fonts-list-by-character-box.png"><img class="aligncenter size-full wp-image-1086" alt="missing-fonts-list-by-character-box" src="http://www.bala-krishna.com/webfiles/uploads/2013/03/missing-fonts-list-by-character-box.png" width="414" height="549" /></a></p>
<h3>Method 2 &#8211; Get Fonts List from PDF</h3>
<ul>
<li>Open PSD file in Adobe Photoshop</li>
<li>Save as or export psd image as a PDF</li>
<li>Open New PDF File in Adobe Reader</li>
<li>Open File Menu -&gt; Properties -&gt; Fonts</li>
<li>See the image below</li>
</ul>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/03/pdf-font-list.png"><img class="aligncenter size-full wp-image-1087" alt="pdf-font-list" src="http://www.bala-krishna.com/webfiles/uploads/2013/03/pdf-font-list.png" width="500" height="493" /></a></p>
<h3>Method 3 &#8211; PhotoShop Script</h3>
<p>If you want to have detailed information about all fonts used in PSD file then this script is for you. It will give you detailed information about all fonts. Usage is fairly easy. Just follow simple steps below.</p>
<ul>
<li><a href="http://www.bala-krishna.com/webfiles/uploads/2013/03/font.jsx_.zip">Download Photoshop Script</a></li>
<li>Go To File -&gt; Scripts -&gt;Browse</li>
<li>Locate and Select font.jsx Photoshop Javascript File</li>
<li>Choose folder where PSD file is located.</li>
<li>Make sure selected folder do not have sub-folder and more then one psd file. The Script scan psd files in all sub-folder and search fonts for each psd file found. It may take lot of time and Photoshop may stopped responding.</li>
<li>Wait for some time until Photoshop process file. Then look into same folder for fonts.txt file. Open this file to view font information</li>
<li>How it looks like: View image below</li>
</ul>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/03/font-txt-file-from-jsx-script.png"><img class="aligncenter size-full wp-image-1089" alt="font-txt-file-from-jsx-script" src="http://www.bala-krishna.com/webfiles/uploads/2013/03/font-txt-file-from-jsx-script.png" width="415" height="312" /></a></p>
<h2>Online Tools</h2>
<p>Apart from offline methods some online tools available to find fonts information from image or psd file.</p>
<h3>What The Font Service</h3>
<p>WhatTheFont service is free tool that takes image as source and deliver closet matched font from their database.  Follow WhatTheFont guideline for accurate result.</p>
<ul>
<li>Keep text in the image as horizontal as possible.</li>
<li>Characters in the image should be around 100 pixels height or higher and should not be touch each other</li>
<li>Keep as much character as possible</li>
<li>If possible use Tiff file format</li>
</ul>
<p><a href="http://www.myfonts.com/WhatTheFont/" target="_blank" rel="nofollow">Go to <strong>What The Font</strong> website</a></p>
<h3>IdentiFont Service</h3>
<p>IdentiFont is similar service but have more options. You can find fonts with different properties of font. You can find fonts by appearance, fonts by name, fonts by similarity, fonts by picture or fonts by publisher/designer. Try It.</p>
<p><a href="http://www.identifont.com" target="_blank" rel="nofollow">Go to <strong>Identifont</strong> Website</a></p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=4AZZaPumJj8:FtKGUMTQ-VM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=4AZZaPumJj8:FtKGUMTQ-VM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=4AZZaPumJj8:FtKGUMTQ-VM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=4AZZaPumJj8:FtKGUMTQ-VM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=4AZZaPumJj8:FtKGUMTQ-VM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=4AZZaPumJj8:FtKGUMTQ-VM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=4AZZaPumJj8:FtKGUMTQ-VM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=4AZZaPumJj8:FtKGUMTQ-VM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=4AZZaPumJj8:FtKGUMTQ-VM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/4AZZaPumJj8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-find-fonts-used-in-psd-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/how-to-find-fonts-used-in-psd-file/</feedburner:origLink></item>
		<item>
		<title>Get Electricity Bill Now on Mobile and Email</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/ZAHnWVqCdww/</link>
		<comments>http://www.bala-krishna.com/get-electricity-bill-now-on-mobile-and-email/#comments</comments>
		<pubDate>Sun, 10 Mar 2013 11:31:51 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile Stuff]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Electricity Bill]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1079</guid>
		<description>Madhya Pradesh Madhya Kshetra Vidyut Vitaran Electricity Board announced registration facility to get electricity bill via sms and email. All you have to register with your electricity connection service number. Make sure to enter service number same as in electricity bill with three dashes otherwise system will not accept number and invalid service number error will be displayed. On successful submission &amp;#8220;Registration done successfully.&amp;#8221; message will appear. After successful registration you will be ready to get your next electricity bill on your mobile via sms. How to Register Open following url in browser and fill the form: http://madhyavitaran.org/ltsms.asp Here is [...]</description>
				<content:encoded><![CDATA[<p>Madhya Pradesh Madhya Kshetra Vidyut Vitaran Electricity Board announced registration facility to get electricity bill via sms and email. All you have to register with your electricity connection service number. Make sure to enter service number same as in electricity bill with three dashes otherwise system will not accept number and invalid service number error will be displayed. On successful submission &#8220;<strong><em>Registration done successfully.</em></strong>&#8221; message will appear. After successful registration you will be ready to get your next electricity bill on your mobile via sms.</p>
<p><a href="http://www.bala-krishna.com/webfiles/uploads/2013/03/electricity-bill-via-sms-email1.jpg"><img class="aligncenter size-full wp-image-1081" alt="electricity-bill-via-sms-email" src="http://www.bala-krishna.com/webfiles/uploads/2013/03/electricity-bill-via-sms-email1.jpg" width="516" height="588" /></a></p>
<p><strong>How to Register</strong></p>
<p>Open following url in browser and fill the form: <a href="http://madhyavitaran.org/ltsms.asp " target="_blank">http://madhyavitaran.org/ltsms.asp </a></p>
<p>Here is little description about the form.</p>
<p><strong>Service Number:</strong> Enter service number in the same format(xxxxxx-xx-x-xxxxxx) it appear in bill. You can find it in between Sambhag name and bill number.<br />
<strong>Name: </strong>Enter your name.<br />
<strong>Address: </strong>Enter your billing address.<br />
<strong>City:</strong> Enter your city.<br />
<strong>Mobile Number: </strong>Enter your mobile number on which you want to receive bill information.<br />
<strong>Email:</strong> Enter your working email address where you want to receive your bill.<br />
<strong>Do you wish to receive SMS alert:</strong> Select yes or no as desired.<br />
<strong>Do you wish to receive email alert:</strong> Select yes or no as desired.<br />
<strong>Security Code: </strong>Enter security code display in image to proceed.</p>
<p>Hit register button to proceed. A successful registration message will appear on success.</p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=ZAHnWVqCdww:LE0Go_aLjQA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=ZAHnWVqCdww:LE0Go_aLjQA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=ZAHnWVqCdww:LE0Go_aLjQA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=ZAHnWVqCdww:LE0Go_aLjQA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=ZAHnWVqCdww:LE0Go_aLjQA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=ZAHnWVqCdww:LE0Go_aLjQA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=ZAHnWVqCdww:LE0Go_aLjQA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=ZAHnWVqCdww:LE0Go_aLjQA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=ZAHnWVqCdww:LE0Go_aLjQA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/ZAHnWVqCdww" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/get-electricity-bill-now-on-mobile-and-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/get-electricity-bill-now-on-mobile-and-email/</feedburner:origLink></item>
		<item>
		<title>How To Retrieve GET/POST Variable In Joomla</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/QfIKBUrtQps/</link>
		<comments>http://www.bala-krishna.com/how-to-retrieve-get-post-variable-in-joomla/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 16:47:09 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1071</guid>
		<description>Joomla uses getVar method of JRequest class to retrieve GET/POST variable value. In Joomla 1.7 and above version JRequest class has been deprecated and JInput class used instead. See following syntex to use with Joomla 1.0, 1.5 and above. Joomla 1.0 $cid = mosGetParam($_REQUEST, &amp;#8216;cid&amp;#8217;, array()); Joomla 1.5 $cid = JRequest::getVar(&amp;#8216;cid&amp;#8217;, array()); Get Single Variable Value $var_value = JRequest::getVar(&amp;#8216;var_name&amp;#8217;); Full Syntex $var_value = JRequest::getVar(&amp;#8216;var_name&amp;#8217;, &amp;#8216;default value goes here&amp;#8217;, &amp;#8216;post&amp;#8217;,'variable type&amp;#8217;); Joomla 1.7 and higher $jinput = JFactory::getApplication()-&gt;input; To retrieve single value you can use below syntax. Example1: $var_value = $jinput-&gt;get(&amp;#8216;varname&amp;#8217;, &amp;#8216;default_value&amp;#8217;, &amp;#8216;filter&amp;#8217;); To retrieve multiple values in array you can [...]</description>
				<content:encoded><![CDATA[<p><a href="http://www.bala-krishna.com/webfiles/uploads/2012/10/joomla-logo-vert-color.png"><img src="http://www.bala-krishna.com/webfiles/uploads/2012/10/joomla-logo-vert-color.png" alt="" title="joomla-logo-vert-color" width="500" height="342" class="aligncenter size-full wp-image-1072" /></a>
<p>Joomla uses getVar method of JRequest class to retrieve GET/POST variable value. In Joomla 1.7 and above version JRequest class has been deprecated and JInput class used instead.</p>
<p>See following syntex to use with Joomla 1.0, 1.5 and above.</p>
<p><strong>Joomla 1.0</strong></p>
<p>$cid = mosGetParam($_REQUEST, &#8216;cid&#8217;, array());</p>
<p><strong>Joomla 1.5</strong></p>
<p>$cid = JRequest::getVar(&#8216;cid&#8217;, array());</p>
<p><em>Get Single Variable Value</em></p>
<p>$var_value = JRequest::getVar(&#8216;var_name&#8217;);</p>
<p><em>Full Syntex</em></p>
<p>$var_value = JRequest::getVar(&#8216;var_name&#8217;, &#8216;default value goes here&#8217;, &#8216;post&#8217;,'variable type&#8217;);</p>
<p><strong>Joomla 1.7 and higher</strong></p>
<p>$jinput = JFactory::getApplication()->input;</p>
<p>To retrieve single value you can use below syntax.</p>
<p><strong>Example1:</strong> $var_value = $jinput->get(&#8216;varname&#8217;, &#8216;default_value&#8217;, &#8216;filter&#8217;);</p>
<p><em>To retrieve multiple values in array you can use below syntex.</em></p>
<p><strong>Example2:</strong> $varValuesArray = $jinput->getArray(array(&#8216;var1&#8242; => &#8221;, &#8216;var2&#8242; => &#8221;, &#8216;var3&#8242; => &#8221;));</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=QfIKBUrtQps:Ik3wKG6UW7E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=QfIKBUrtQps:Ik3wKG6UW7E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=QfIKBUrtQps:Ik3wKG6UW7E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=QfIKBUrtQps:Ik3wKG6UW7E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=QfIKBUrtQps:Ik3wKG6UW7E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=QfIKBUrtQps:Ik3wKG6UW7E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=QfIKBUrtQps:Ik3wKG6UW7E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=QfIKBUrtQps:Ik3wKG6UW7E:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=QfIKBUrtQps:Ik3wKG6UW7E:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/QfIKBUrtQps" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-retrieve-get-post-variable-in-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/how-to-retrieve-get-post-variable-in-joomla/</feedburner:origLink></item>
		<item>
		<title>How To Get 25GB Dropbox Space</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/8pTTX3HLui0/</link>
		<comments>http://www.bala-krishna.com/how-to-get-25gb-dropbox-space/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 12:38:47 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1066</guid>
		<description>Dropbox launched Great Space Race program for schools. You can get space upto 25GB by siging into the program. To eligible you must have an working e-mail address from your Education Institution. The program is open for participant till December 10, 2012 at 10:00 a.m. At least 25 participants from institution must be sign up for the program to eligible into program. View Details Terms Here &amp;#124; Grab This Offer</description>
				<content:encoded><![CDATA[<p><a href="http://www.bala-krishna.com/webfiles/uploads/2012/10/great-space-race1.jpg"><img src="http://www.bala-krishna.com/webfiles/uploads/2012/10/great-space-race1.jpg" alt="" title="great-space-race" width="550"  class="aligncenter size-full wp-image-1069" /></a>
<p>Dropbox launched Great Space Race program for schools. You can get space upto 25GB by siging into the program. To eligible you must have an working e-mail address from your Education Institution. The program is open for participant till December 10, 2012 at 10:00 a.m. At least 25 participants from institution must be sign up for the program to eligible into program.</p>
<p><a href="https://www.dropbox.com/spacerace/terms" target="_blank">View Details Terms Here</a> | </p>
<p><a href="https://www.dropbox.com/spacerace" target="_blank">Grab This Offer</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=8pTTX3HLui0:9UIv3rKh1Vs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=8pTTX3HLui0:9UIv3rKh1Vs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=8pTTX3HLui0:9UIv3rKh1Vs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=8pTTX3HLui0:9UIv3rKh1Vs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=8pTTX3HLui0:9UIv3rKh1Vs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=8pTTX3HLui0:9UIv3rKh1Vs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=8pTTX3HLui0:9UIv3rKh1Vs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=8pTTX3HLui0:9UIv3rKh1Vs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=8pTTX3HLui0:9UIv3rKh1Vs:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/8pTTX3HLui0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-get-25gb-dropbox-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/how-to-get-25gb-dropbox-space/</feedburner:origLink></item>
		<item>
		<title>How to Fix Issues With Viewing WP HTML Sitemap</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/uGETRD8xwpU/</link>
		<comments>http://www.bala-krishna.com/how-to-fix-issues-with-viewing-wp-html-sitemap/#comments</comments>
		<pubDate>Thu, 21 Jun 2012 07:30:56 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1056</guid>
		<description>While installing wp-html-sitemap plugin today, after setting up everything I saw that the sitemap page returned shortcode&amp;#160;[wp_html_sitemap]. Googling did not worked, even support forum doesn&amp;#8217;t have any resolution on this issue. So I decided to debug the issue with plugin myself since debugging becomes tough for developers if they can&amp;#8217;t replicate the issue on their&amp;#160;own testing environment. I tried to print registered shortcodes with wordpress and found that&amp;#160;[wp_html_sitemap]&amp;#160;was not getting registered with wordpress. So the issues was with line on how shortcode was defined with add_shortcode&amp;#160;function. How to Fix 1. Open wp-html-sitemap.php file and find add_shortcode function on line number [...]</description>
				<content:encoded><![CDATA[<p><a href="http://www.bala-krishna.com/webfiles/uploads/2012/06/wordpress-html-sitemap-viewing-issue.jpg"><img class="aligncenter size-thumbnail wp-image-1057" title="wordpress-html-sitemap-viewing-issue" src="http://www.bala-krishna.com/webfiles/uploads/2012/06/wordpress-html-sitemap-viewing-issue-150x150.jpg" alt="" width="150" height="150" /></a>
<p>While installing wp-html-sitemap plugin today, after setting up everything I saw that the sitemap page  returned shortcode&nbsp;<strong>[wp_html_sitemap]</strong>. Googling did not worked, even support forum doesn&#8217;t have any resolution on this issue. So I decided to debug the issue with plugin myself since  debugging  becomes tough for developers if they can&#8217;t replicate the issue on their&nbsp;<span id="IL_AD1">own testing environment</span>. I tried to print registered shortcodes with wordpress and  found that&nbsp;<strong>[wp_html_sitemap]</strong>&nbsp;was not getting  registered with wordpress. So the issues was with line on how shortcode was defined with <strong>add_shortcode</strong>&nbsp;function.</p>
<p><strong>How to Fix</strong></p>
<p><strong>1.</strong> Open wp-html-sitemap.php file and find add_shortcode function on line number 210.<br />
<strong>2.</strong> Replace line <em><strong>add_shortcode( &#8216;wp_html_sitemap&#8217;, &#8216;wp_html_sitemap_shortcode::start&#8217; );</strong></em><br />
<strong>3.</strong> With <strong><em>add_shortcode( &#8216;wp_html_sitemap&#8217;, array(&#8216;wp_html_sitemap_shortcode&#8217;, &#8216;start&#8217;) );</em></strong><br />
<strong>4.</strong> Save file and upload file on server.<br />
<strong>5.</strong> Now access sitemap page in web browser<br />
<strong>6.</strong> If you are using cache plugin make sure to delete cache first. </p>
<p><strong>Why add_shortcode( &#8216;wp_html_sitemap&#8217;, &#8216;wp_html_sitemap_shortcode::start&#8217; ); not working for some installation?</strong></p>
<p>The above line will work fine on PHP 3.0 and above. PHP < 3.0 do not support :: to reference the class. So for backward compatibility we need to declare class function using array.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=uGETRD8xwpU:ZSoOJcbLdEc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=uGETRD8xwpU:ZSoOJcbLdEc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=uGETRD8xwpU:ZSoOJcbLdEc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=uGETRD8xwpU:ZSoOJcbLdEc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=uGETRD8xwpU:ZSoOJcbLdEc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=uGETRD8xwpU:ZSoOJcbLdEc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=uGETRD8xwpU:ZSoOJcbLdEc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=uGETRD8xwpU:ZSoOJcbLdEc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=uGETRD8xwpU:ZSoOJcbLdEc:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/uGETRD8xwpU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-fix-issues-with-viewing-wp-html-sitemap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/how-to-fix-issues-with-viewing-wp-html-sitemap/</feedburner:origLink></item>
		<item>
		<title>How to Add Facebook Application as Page Tab</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/y-ZPYIw_iZA/</link>
		<comments>http://www.bala-krishna.com/how-to-add-facebook-application-as-page-tab/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 18:01:47 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Messenger]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1052</guid>
		<description>If you are looking for solution to add Facebook application as page tab on your page this post is for you. Facebook removed &amp;#8220;Add to My Page&amp;#8221; link from application. It took me hours to find workaround on the issue. I hope this post will save your valuable time. This functionality now need to integrated in Facebook application itself in the form of link. However, if no link or installation button provided by application creator then you can easily add application to your page. I believe Facebook removed &amp;#8220;Add to My Page&amp;#8221; link to encourage application owner to provide installation button on application page. &amp;#160; You need facebook [...]</description>
				<content:encoded><![CDATA[<p><a href="http://www.bala-krishna.com/webfiles/uploads/2012/02/add-facebook-application-to-my-page.png"><img class="alignleft size-full wp-image-1053" title="add-facebook-application-to-my-page" src="http://www.bala-krishna.com/webfiles/uploads/2012/02/add-facebook-application-to-my-page.png" alt="" width="199" height="111" /></a>If you are looking for solution to add Facebook application as page tab on your page this post is for you. Facebook removed &#8220;Add to My Page&#8221; link from application. It took me hours to find workaround on the issue. I hope this post will save your valuable time. This functionality now need to integrated in Facebook application itself in the form of link. However, if no link or installation button provided by application creator then you can easily add application to your page. I believe Facebook removed &#8220;Add to My Page&#8221; link to encourage application owner to provide installation button on application page.</p>
<p>&nbsp;</p>
<p>You need facebook application ID and facebook application URL to add application on your page.</p>
<ol>
<li>Make sure your are login into facebook.<br/><br/></li>
<li>Prepare &#8220;Add Page Tab&#8221; dialog url below. Replace YOUR_APP_ID with application id and YOUR_URL with application profile url. Application profile url look like this. https://apps.facebook.com/digitaltipstalk/<br />
<br/><br/>Dialog URL: https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&amp;next=YOUR_URL<br/><br/></li>
<li>Copy url in browser address bar and go. Facebook new add to page tab dialog will prompt to add application to fan page.<a href="http://www.bala-krishna.com/webfiles/uploads/2012/02/facebook-add-page-tab-dialog.png"><img class="aligncenter size-full wp-image-1054" title="facebook-add-page-tab-dialog" src="http://www.bala-krishna.com/webfiles/uploads/2012/02/facebook-add-page-tab-dialog.png" alt="" width="504" height="202" /></a><br/><br/></li>
<li>Select fan page from the page list then click on &#8220;Add Page Tab&#8221; button to complete the process.<br/><br/></li>
<li>All done.</li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=y-ZPYIw_iZA:fvDICOA4HhQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=y-ZPYIw_iZA:fvDICOA4HhQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=y-ZPYIw_iZA:fvDICOA4HhQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=y-ZPYIw_iZA:fvDICOA4HhQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=y-ZPYIw_iZA:fvDICOA4HhQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=y-ZPYIw_iZA:fvDICOA4HhQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=y-ZPYIw_iZA:fvDICOA4HhQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=y-ZPYIw_iZA:fvDICOA4HhQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=y-ZPYIw_iZA:fvDICOA4HhQ:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/y-ZPYIw_iZA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-add-facebook-application-as-page-tab/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/how-to-add-facebook-application-as-page-tab/</feedburner:origLink></item>
		<item>
		<title>What are Network Topologies</title>
		<link>http://feedproxy.google.com/~r/bala-krishna/~3/5HPcScB50xo/</link>
		<comments>http://www.bala-krishna.com/what-are-network-topologies/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 17:32:37 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Operating System Tutorial]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[bus ring]]></category>
		<category><![CDATA[central node]]></category>
		<category><![CDATA[coaxial cable]]></category>
		<category><![CDATA[communication devices]]></category>
		<category><![CDATA[communication line]]></category>
		<category><![CDATA[computer nodes]]></category>
		<category><![CDATA[data communication system]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[full]]></category>
		<category><![CDATA[geographical scope]]></category>
		<category><![CDATA[lan networks]]></category>
		<category><![CDATA[lan topologies]]></category>
		<category><![CDATA[logical extension]]></category>
		<category><![CDATA[logical path]]></category>
		<category><![CDATA[long distances]]></category>
		<category><![CDATA[network lan]]></category>
		<category><![CDATA[Number]]></category>
		<category><![CDATA[Packet]]></category>
		<category><![CDATA[passive device]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[purpose of data communication]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[star topologies]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[transmission delays]]></category>
		<category><![CDATA[transmission medium]]></category>
		<category><![CDATA[twisted pair wire]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=1046</guid>
		<description>A network is a logical extension of data communication system. In computer network, two or more computers are link together with the carrier and data communication devices for the purpose of data communication and resources sharing. The manner in which computer nodes are geometrically arranged and connected is known as the topology of network. LAN networks are commonly characterized in terms of topology. Two major classes of LAN topologies are unconstrained and constrained topology. Three basic constrained LAN topologies known as Bus, Ring and Star topologies. Specific topologies depends on the geographical scope of network. Network limited to a company&amp;#8217;s [...]</description>
				<content:encoded><![CDATA[<p><a href="http://www.bala-krishna.com/webfiles/uploads/2011/12/network-topologies.png"><img class="aligncenter size-full wp-image-1048" title="network-topologies" src="http://www.bala-krishna.com/webfiles/uploads/2011/12/network-topologies.png" alt="" width="300" height="89" style="clear:both;" /></a>A network is a logical extension of data communication system. In computer network, two or more computers are link together with the carrier and data communication devices for the purpose of data communication and resources sharing. The manner in which computer nodes are geometrically arranged and connected is known as the topology of network.</p>
<p>LAN networks are commonly characterized in terms of topology. Two major classes of LAN topologies are unconstrained and constrained topology. Three basic constrained LAN topologies known as Bus, Ring and Star topologies. Specific topologies depends on the geographical scope of network. Network limited to a company&#8217;s or universities local facilities. LAN networks has horizontal topologies and interconnect computers that are peers with similar capabilities.</p>
<p>Network that covers long distances are called WAN and often has vertical topologies. because some hosts may have greater data processing capabilities and less capable hosts funnel data to them for processing. In practice, a particular application may be pure topology or a mix of several topologies.</p>
<h2><strong>Horizontal OR Constrained Topologies</strong></h2>
<p><strong>Star Topologies</strong></p>
<p>Star topologies is the simplest topology. In this topology, there is  central switching node which is connected to nodes through multiple communication line. Nodes are not link directly to each other and can communicate only via the central switching node. The routing function performed by the central node which centrally controls communication between any two nodes by establishing a logical path between them. The central node can be active device or passive device and transmission medium can be either twisted pair wire, coaxial cable or optical fiber.</p>
<p><strong>Advantages</strong></p>
<ul>
<li>Transmission delays between two nodes do not increase by adding new nodes to the network because any two nodes may be connected via two links only.</li>
<li>If any of the local computer or node fail; the remaining portion of the network does not affect.</li>
<li>Data security is very high.</li>
</ul>
<p><strong>Disadvantages </strong></p>
<ul>
<li>The system totally depends on the central node. If the central node fails entire network fails.</li>
<li>Communication line cost is very high.</li>
</ul>
<h2><strong>Ring Topology</strong></h2>
<p>In a ring topology, consecutive nodes are connected by point to point links which are arranged to form a single closed path called ring. Each ring processor has communicating subordinates but within the ring there is no master computer for controlling other computers.</p>
<p>A node receives data from one of its two adjacent nodes. The only decision a node has to take is weather the data is for its user or not. Data packet is utilized if addressed to the node otherwise passed it to nearby next node. The data flow may be uni-directional or bi-directional.</p>
<p><strong>Ring Point-to-Point Topology</strong> &#8211; In point-to-point ring topology there is a broken copper wire and transmission is only through from one node to another node. However in any case, If  any one of the node get fails then ring topology automatically converts to bus topology.</p>
<p><strong>Ring Broadcast Topology</strong> &#8211; In this type of topology transmission done at once at all the nodes rather than from one node to another node.</p>
<p><strong>Advantages</strong></p>
<ul>
<li>The ring network works well where there is no central-site computer system. It is truly distributed data processing system.</li>
<li>It is more reliable than a star network because communication is not dependent on a single host computer. If one line between any two node break down or if one of the node itself break down alternate routing is possible.</li>
<li>In this topology there is need to send acknowledgement separately. The frame itself work as a acknowledge frame because after passing through each and every node it returns back to the sender.</li>
</ul>
<p><strong>Disadvantages</strong></p>
<ul>
<li>In a ring network, communication delay is directly proportional to number of the nodes in the network. Hence addition of the nodes in the network increases the communication delays.</li>
<li>The ring network is not as popular as start network because of its more complicated control software.</li>
</ul>
<h2>Bus OR Linear Topology</h2>
<p>In a bus topology all the network nodes are connected to a common transmission medium. As a result, one pair of users on the network can communicate at the same time. When a particular node wants to send a message to another nodes, it appends the destination address to the message and check weather the communication line is free. As soon as communication line is free it broadcasts or places the message on the line. As the message travels on the line each computer check weather it is address to it. The message is picked by the addressee computer which sends the acknowledgment to source computer and free the line.</p>
<p><strong>Advantages</strong></p>
<ul>
<li>The main advantage is that the cable runs are shorter then the other topology.</li>
<li>The reliability of network is high because the failure of a computer in network does not affect the network functioning for other computers.</li>
<li>Addition of new node to this topology is ea</li>
</ul>
<p><strong>Disadvantages</strong></p>
<ul>
<li>Limitation of bus network include transmission distance restriction in base-band buses, difficulty in implementing delivery priorities and the signal balancing problem in baseband and dual cable broadband buses.</li>
</ul>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bala-krishna?a=5HPcScB50xo:gctQ0ihU9Mk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=5HPcScB50xo:gctQ0ihU9Mk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=5HPcScB50xo:gctQ0ihU9Mk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=5HPcScB50xo:gctQ0ihU9Mk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=5HPcScB50xo:gctQ0ihU9Mk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=5HPcScB50xo:gctQ0ihU9Mk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=5HPcScB50xo:gctQ0ihU9Mk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/bala-krishna?i=5HPcScB50xo:gctQ0ihU9Mk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bala-krishna?a=5HPcScB50xo:gctQ0ihU9Mk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/bala-krishna?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bala-krishna/~4/5HPcScB50xo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/what-are-network-topologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bala-krishna.com/what-are-network-topologies/</feedburner:origLink></item>
	</channel>
</rss>
