<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Bala-Krishna &#187; Web Technology</title>
	<atom:link href="http://www.bala-krishna.com/category/web-technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bala-krishna.com</link>
	<description>Web Developer &#38; Internet Marketing Consultant</description>
	<lastBuildDate>Fri, 19 Mar 2010 12:56:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Fix Missing a temporary folder error in Wordpress</title>
		<link>http://www.bala-krishna.com/how-to-fix-missing-a-temporary-folder-error-in-wordpress/</link>
		<comments>http://www.bala-krishna.com/how-to-fix-missing-a-temporary-folder-error-in-wordpress/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 12:37:39 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=726</guid>
		<description><![CDATA[
			
				
			
		
This error comes when you try to upload media file such as image, video by Wordpress browser uploader or flash uploader. Wordpress shows this error when temporary upload folder not configured in php.ini file. It is possible upload temp folder is configured but path entered does not exist in the file system. To fix the [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/how-to-fix-missing-a-temporary-folder-error-in-wordpress/&title=How+to+Fix+Missing+a+temporary+folder+error+in+Wordpress&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-fix-missing-a-temporary-folder-error-in-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-fix-missing-a-temporary-folder-error-in-wordpress%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>This error comes when you try to upload media file such as image, video by Wordpress browser uploader or flash uploader. Wordpress shows this error when temporary upload folder not configured in php.ini file. It is possible upload temp folder is configured but path entered does not exist in the file system. To fix the issue you just need to check and correct temporary path in php.ini file. If path is in-correct you need to correct folder path or if no folder path given then you need to set temporary path.</p>
<p>You can easily fix this by editing php.ini file. Most of the shared hosting provider now support custom php.ini per account. It means you can have you own php.ini and optimize php setting according to your need.</p>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2010/02/missing-temporary-folder.png"><img class="alignleft size-full wp-image-727" title="Missing Temporary Folder Wordpress Error" src="http://www.bala-krishna.com/wp-content/uploads/2010/02/missing-temporary-folder.png" alt="" width="469" height="204" /></a></p>
<p><strong>Apply following steps to complete this task.</strong></p>
<p><strong>1)</strong> Find out exact physical path of your account <em>public_html</em> folder. Create a text file and name it phpinfo.php. Add below lines in the file. Save file then upload file in the <em>public_html</em> folder of your server.</p>
<p>&lt;?php phpinfo(); ?&gt;</p>
<p><strong>2)</strong> Run phpinfo.php file by pointing your browser to the file. <em>http://www.yourdomain.com/phpinfo.php</em>. Replace <em>yourdomain.com</em> with your actual domainÂ  name.</p>
<p><strong>3)</strong> Search for two entries <em>_SERVER["SCRIPT_FILENAME"]</em> and <em>Loaded Configuration File. </em>Note down value against these entries.</p>
<p>In my case value for above entries are</p>
<p><em>_SERVER["SCRIPT_FILENAME"]Â  -&gt; /home/homefolder/public_html/phpinfo.php<br />
</em></p>
<p><em>Loaded Configuration File -&gt; /etc/php/php.ini</em></p>
<p>4) If your hosting account support custom php.ini or you have server access then you can complete following steps otherwise you need to ask your hosting company to complete this for you.</p>
<p><strong>If you have server command line access.</strong></p>
<ol>
<li>Create a temporary folder called &#8220;tmp&#8221; within your public_html folder from FTP. Now temporary folder path is <em>/home/homefolder/public_html/tmp/<br />
</em></li>
<li>Login into the command prompt as server administrator.</li>
<li>Type below command and hit enter</li>
<li>$ sudo nano /etc/php/php.ini</li>
<li>It will open php.ini file in nano visual editor with root privileges. Enter root password if asked.</li>
<li>Find <em>upload_tmp_dir </em>and un-comment it if commented.<em> &#8220;;&#8221;</em> used for commenting purpose in php.ini.<em> </em>Simply remove this special character to un-comment line.</li>
<li>Change <em>upload_tmp_dir value to /home/<em>homefolder</em>/public_html/tmp/</em>. You line should appear similar to next line (8).</li>
<li>upload_tmp_dir = /home/<em>homefolder</em>/public_html/tmp/</li>
<li>Save php.ini file and restart apache.</li>
<li>Now again run phpinfo.php file in your browser. New value should appear in your php info setting.</li>
</ol>
<p><strong>If your host support custom php.ini<br />
</strong></p>
<ol>
<li>Create a temporary folder called &#8220;tmp&#8221; within your <em>public_html</em> folder from FTP. Now temporary folder path is <em>/home/homefolder/public_html/tmp/</em></li>
<li>Create a text file called php.ini in your system and paste content in step (8) specified above.</li>
<li>Save file and upload to your public_html folder in your FTP.</li>
<li>Run phpinfo.php file in your browser. New value should appear in your php info setting.</li>
</ol>
<p>Error should disappear now. However, in some cases you may still get same error. For those cases try removing trailing slash at the end of path. After the change path would beÂ  <em>/home/homefolder/public_html/tmp </em>instead of <em>/home/homefolder/public_html/tmp/</em></p>
<p><strong>Host Support Custom PHP.INI</strong></p>
<ul>
<li>HostGator</li>
<li>aSmallOrange</li>
<li>SiteGround</li>
<li>Site5</li>
</ul>
<p>Good Luck</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-fix-missing-a-temporary-folder-error-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox Security Loopholes Detected</title>
		<link>http://www.bala-krishna.com/firefox-security-loopholes-detected/</link>
		<comments>http://www.bala-krishna.com/firefox-security-loopholes-detected/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 12:54:22 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Bug Fix]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Firefox Add-On]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=714</guid>
		<description><![CDATA[
			
				
			
		
Firefox has three identified security loop holes known as MSFA 2010-01, 2010-02 and 2010-03 in the 3.5.x and 3.0.x Firefox browser versions. These security flaws involve memory related errors which can allow hackers to run any command on a victim computer. Other two flaws related to cross-site scripting attacks.
Mozilla Firefox has released security patches for [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/firefox-security-loopholes-detected/&title=Firefox+Security+Loopholes+Detected&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Ffirefox-security-loopholes-detected%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Ffirefox-security-loopholes-detected%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a rel="nofollow" href="http://www.mozilla.com/products/download.html?product=firefox-3.6&amp;os=win&amp;lang=en-US"><img class="alignleft size-full wp-image-715" title="firefox-3.6-security-loopholes-detected" src="http://www.bala-krishna.com/wp-content/uploads/2010/02/firefox-3.6-security-loopholes-detected.png" alt="" width="273" height="164" /></a>Firefox has three identified security loop holes known as MSFA 2010-01, 2010-02 and 2010-03 in the 3.5.x and 3.0.x Firefox browser versions. These security flaws involve memory related errors which can allow hackers to run any command on a victim computer. Other two flaws related to cross-site scripting attacks.</p>
<p>Mozilla Firefox has released security patches for these security flaws. Released patches are for Firefox 3.5.x and 3.0.x series. Firefox have included patch for these flaws in Firefox 3.6 series so users who are running Firefox 3.6 need not to install patches for these vulnerabilities. Users who are  running Firefox 3.5.x or 3.0.x series must upgrade to 3.6 version or install patch separately in order to protect their PC from possible  attacks.</p>
<p><strong>Whatâ€™s New in Firefox 3.6</strong></p>
<p>Firefox 3.6 built over latest Gecko 1.9.2 platform which contain many improvements for developers and users. This version is more faster then its predecessors and optimized for small devices operating systems.</p>
<p>Firefox 3.6 features include:</p>
<ul>
<li>Available in more than 70 languages</li>
<li>Support for new theme technology called Personas. Personas themes are easy-to-install and can change entire Firefox look in a single click.</li>
<li>Protection from out-dated plugins by giving you warning message. Old versions of plug-ins can cause crashes and other  stability problems. Firefox provides safer and  more stable experience when using plugins.</li>
<li>Improved JavaScript performance, overall browser responsiveness, and startup time.</li>
<li>The ability for web developers to indicate that scripts should run asynchronously to speed up page load times.</li>
<li>Continued support for downloadable web fonts using the new WOFF font format.</li>
<li>Support for new CSS attributes such as gradients, background sizing, and pointer events.</li>
<li>Support for new DOM and HTML5 specifications including the Drag &amp; Drop API and the File API, which allow for more interactive web pages.</li>
<li>Changes to how third-party software can integrate with Firefox in order to prevent crashes.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/firefox-security-loopholes-detected/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Steps to open docx file in the older Microsoft Office version</title>
		<link>http://www.bala-krishna.com/3-steps-to-open-docx-file-in-the-older-microsoft-office-version/</link>
		<comments>http://www.bala-krishna.com/3-steps-to-open-docx-file-in-the-older-microsoft-office-version/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 15:28:48 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Gmail Stuff]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Window Application]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=711</guid>
		<description><![CDATA[
			
				
			
		
It is very difficult to open .docx files for the user who are using older version of Microsoft Office. Microsoft Office introduced new .docx file format in the ms office 2007. Users who are using ms office 2003 or older version can not open .docx document.
There are several way to open .docx and other file [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/3-steps-to-open-docx-file-in-the-older-microsoft-office-version/&title=3+Steps+to+open+docx+file+in+the+older+Microsoft+Office+version&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2F3-steps-to-open-docx-file-in-the-older-microsoft-office-version%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2F3-steps-to-open-docx-file-in-the-older-microsoft-office-version%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2010/02/microsoft-office-2007.jpg"><img src="http://www.bala-krishna.com/wp-content/uploads/2010/02/microsoft-office-2007-300x157.jpg" alt="" title="microsoft-office-2007" width="300" height="157" class="alignleft size-medium wp-image-713" /></a>It is very difficult to open .docx files for the user who are using older version of Microsoft Office. Microsoft Office introduced new .docx file format in the ms office 2007. Users who are using ms office 2003 or older version can not open .docx document.</p>
<p>There are several way to open .docx and other file format associated with MS-Office 2007 like .pptx or .xlsx even without installing ms office 2007.</p>
<p><strong>1)</strong> First and easiest way is to use Google docs to open your .docx file. There are several other benefit using Google docs for document. You can convert as well as store your files in Google docs and open wherever you want.Â  Users who are using Gmail might be already familiar with google doc and know how easy it is to manage doc with Google docs.</p>
<p><strong>2) </strong>Use Microsoft office compatibility pack released for backward compatibility. You need to download and install <a title="Microsoft office compatibility pack" rel="nofollow" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=941B3470-3AE9-4AEE-8F43-C6BB74CD1466&amp;displaylang=en" target="_blank">Microsoft office compatibility pack</a> from Microsoft website. After installation you will be able to open .docx file in your microsoft office version currently installed on your system.</p>
<p><strong>3)</strong> Download and Use <a rel="nofollow">OpenOffice</a> to open .docx file. You can also use OpenOffice for all you Microsoft office need. OpenOffice is now widely used as Microsoft office replacement and commonly used office suite in Linux environment.Â  This package available in many languages and available for almost all platform including Mac OSX and Linux. <a href="http://www.openoffice.org/" target="_blank">Download OpenOffice installer from here</a>. You can also download and use <a title="Open Office Portable Version" href="http://portableapps.com/node/16395" target="_blank" rel="nofollow">open office portable version </a>without installing OpenOffice whenever you need.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/3-steps-to-open-docx-file-in-the-older-microsoft-office-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Out Google Chrome Extensions Gallery</title>
		<link>http://www.bala-krishna.com/check-out-google-chrome-extensions-gallery/</link>
		<comments>http://www.bala-krishna.com/check-out-google-chrome-extensions-gallery/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 10:43:14 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Gmail Stuff]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></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=669</guid>
		<description><![CDATA[
			
				
			
		
If you have not used Google chrome extension yet then this is time to check out Google chrome gallery. Google has now officially released chrome extension gallery that have bunch of extension to enhance chrome power. It certainly increase chrome lover and provide better browsing experience. Just search and install extension you like. Chrome do [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/check-out-google-chrome-extensions-gallery/&title=Check+Out+Google+Chrome+Extensions+Gallery&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fcheck-out-google-chrome-extensions-gallery%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fcheck-out-google-chrome-extensions-gallery%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>If you have not used Google chrome extension yet then this is time to check out Google chrome gallery. Google has now officially released chrome extension gallery that have bunch of extension to enhance chrome power. It certainly increase chrome lover and provide better browsing experience. Just search and install extension you like. Chrome do not ask you restart browser like Firefox after installation so just install without fear. Please note that chrome extension only work with developer builds 4.0+. If you are running chrome 3.0 series then you need to install 4.0 version. Chrome automatically ask you to download and install 4.0 developer build when you try to install extension in 3.0 series.</p>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2009/12/google-chrome-extension.jpg"><img class="alignleft size-full wp-image-670" title="Google Chrome Extension" src="http://www.bala-krishna.com/wp-content/uploads/2009/12/google-chrome-extension.jpg" alt="Google Chrome Extension" width="500" height="389" /></a></p>
<p>Some of the useful extension that i have installed and you may love too:</p>
<ul>
<li><strong>Google Mail Checker:</strong> Displays the number of unread messages in your Google Mail inbox.</li>
<li><strong>Google Translate:</strong> This extension translates entire webpages into a language of your choice with one click.</li>
<li><strong>RSS Subscription:</strong> Adds one-click subscription to your toolbar</li>
<li><strong>Google Wave Notifier:</strong> Displays number of unread Waves</li>
<li><strong>Chromed Bird:</strong> Chromed Bird is a Twitter extension that allows you to follow your timelines and interact with your Twitter account.</li>
<li><strong>IE Tab:</strong> Display web pages using IE in a tab</li>
<li><strong>Docs PDF/PowerPoint Viewer:</strong> Automatically previews pdfs, powerpoint presentations, and other documents in Google Docs Viewer.</li>
<li><strong>Tab Menu: </strong> Select, close, rearrange, and find your tabs in a vertical, readable menu!</li>
</ul>
<p><a rel="nofollow" href="http://www.google.com/landing/chrome/beta/"><strong>Chrome 4.0 Beta Download Link</strong></a></p>
<p><a rel="nofollow" href="https://chrome.google.com/extensions"><strong>Chrome Extension Gallery</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/check-out-google-chrome-extensions-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Convert PDF to Microsoft Word &amp; Word, Excel, and PowerPoint to PDF, XPS</title>
		<link>http://www.bala-krishna.com/how-to-convert-pdf-to-microsoft-word-word-excel-and-powerpoint-to-pdf-xps/</link>
		<comments>http://www.bala-krishna.com/how-to-convert-pdf-to-microsoft-word-word-excel-and-powerpoint-to-pdf-xps/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 11:52:41 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></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=663</guid>
		<description><![CDATA[
			
				
			
		
gDoc Creator is free enterprise level application available to convert Word, Excel, and PowerPoint into PDF or XPS. It also has ability to convert PDF to Word doc. gDoc Creator add button in the Office toolbar that allow you to create PDF files instantly. gDoc also allow you to merge and join PDF documents.
gDoc have [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/how-to-convert-pdf-to-microsoft-word-word-excel-and-powerpoint-to-pdf-xps/&title=How+to+Convert+PDF+to+Microsoft+Word+&#038;+Word,+Excel,+and+PowerPoint+to+PDF,+XPS&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-convert-pdf-to-microsoft-word-word-excel-and-powerpoint-to-pdf-xps%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-convert-pdf-to-microsoft-word-word-excel-and-powerpoint-to-pdf-xps%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2009/12/gdoc-screenshot.jpg"><img class="alignleft size-full wp-image-664" title="gdoc-screenshot" src="http://www.bala-krishna.com/wp-content/uploads/2009/12/gdoc-screenshot.jpg" alt="gdoc-screenshot" width="200" height="199" /></a>gDoc Creator is free enterprise level application available to convert Word, Excel, and PowerPoint into PDF or XPS. It also has ability to convert PDF to Word doc. gDoc Creator add button in the Office toolbar that allow you to create PDF files instantly. gDoc also allow you to merge and join PDF documents.</p>
<p>gDoc have many great features. I am just trying to outlined below.</p>
<ul>
<li>Ability to convert docs in multiple formats. This program install virtual XPS and PDF printer driver that can convert any printable document to XPS and PDF Format.</li>
<li>It offer multiple conversion profiles such as <em>Retain Page Layout</em>, <em>Retain Text Editability</em>, and<em> Retain Text Flow</em>.</li>
<li>Support add-ons for MS Office that allow you to convert document from MS Office instantly within a click.</li>
<li>Excellent conversion at blazing fast speed.</li>
</ul>
<p>Download: <a rel="nofollow" title="How to Convert PDF to Microsoft Word &amp; Word, Excel, and PowerPoint to PDF, XPS" href="http://www.globalgraphics.com/en/gdoc/gdoc-try-downloads" target="_blank">http://www.globalgraphics.com/en/gdoc/gdoc-try-downloads</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-convert-pdf-to-microsoft-word-word-excel-and-powerpoint-to-pdf-xps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Fix Wordpress MU Redirect Loop Installation Error</title>
		<link>http://www.bala-krishna.com/how-to-fix-wordpress-mu-redirect-loop-installation-error/</link>
		<comments>http://www.bala-krishna.com/how-to-fix-wordpress-mu-redirect-loop-installation-error/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 12:10:34 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Bug Fix]]></category>
		<category><![CDATA[Error Log]]></category>
		<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[PHP Programming]]></category>
		<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Word Press]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[Wordpress Theme]]></category>
		<category><![CDATA[Wordpress Widget]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=573</guid>
		<description><![CDATA[
			
				
			
		
I recently encounter this issue on my client wordpress mu blog.  When i open main blog page after installation an infinite loop occur and stop at dead end in Firefox. I searched a lot about this on wordpress forum. Surprising, issue is stated everywhere in the forums and blog but no solution was suggested.
Why Redirect Loop?
The issue [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/how-to-fix-wordpress-mu-redirect-loop-installation-error/&title=How+to+Fix+Wordpress+MU+Redirect+Loop+Installation+Error&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-fix-wordpress-mu-redirect-loop-installation-error%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-fix-wordpress-mu-redirect-loop-installation-error%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I recently encounter this issue on my client wordpress mu blog.  When i open main blog page after installation an infinite loop occur and stop at dead end in Firefox. I searched a lot about this on wordpress forum. Surprising, issue is stated everywhere in the forums and blog but no solution was suggested.</p>
<p><strong>Why Redirect Loop?</strong></p>
<p>The issue arise because database was not created during wordpress installation but word press config file was written. WordPress uses wp-config.php file to store database configuration.  If WordPress find this file in the  installation directory then no further installation procedure begin. WordPress now look at DB to load default blog but there is no table in the database. Again, control goes to install procedure but WordPress understand blog already installed because WordPress config file is present in root folder. Once again WordPress try to load blog from database and redirect loop occur.  I hope WordPress guys will fix this in future releases.</p>
<p><strong>The Fix</strong></p>
<p>The fix is very simple. Simply, rename or delete WordPress config file and re-install wordpress mu.  Make sure database user you are using during installation have sufficient permission to create and manipulate database tables.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-fix-wordpress-mu-redirect-loop-installation-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix WordPress RSS Feed XML Parsing Errors &#8211; XML or text declaration not at start of entity</title>
		<link>http://www.bala-krishna.com/fix-wordpress-rss-feed-xml-parsing-errors-xml-or-text-declaration-not-at-start-of-entity/</link>
		<comments>http://www.bala-krishna.com/fix-wordpress-rss-feed-xml-parsing-errors-xml-or-text-declaration-not-at-start-of-entity/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 12:41:37 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Word Press]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=560</guid>
		<description><![CDATA[
			
				
			
		
Today, i  discovered that my blog feed was showing error in Firefox and other browsers.  This error comes if white space of empty line at the start of xml feed content. Your xml feed content should start with xml declaration without white space or empty line. Blank lines or white space can be introduced by [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/fix-wordpress-rss-feed-xml-parsing-errors-xml-or-text-declaration-not-at-start-of-entity/&title=Fix+WordPress+RSS+Feed+XML+Parsing+Errors+&#8211;+XML+or+text+declaration+not+at+start+of+entity&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Ffix-wordpress-rss-feed-xml-parsing-errors-xml-or-text-declaration-not-at-start-of-entity%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Ffix-wordpress-rss-feed-xml-parsing-errors-xml-or-text-declaration-not-at-start-of-entity%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Today, i  discovered that my blog feed was showing error in Firefox and other browsers.  This error comes if white space of empty line at the start of xml feed content. Your xml feed content should start with xml declaration without white space or empty line. Blank lines or white space can be introduced by theme code, plugins, wordpress code or wordpress configuration file. A quick fix is check files you have recently edited.</p>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2009/10/wordpress-rss-feed-error.gif"><img class="alignleft size-full wp-image-561" title="Wordpress RSS Feed Error" src="http://www.bala-krishna.com/wp-content/uploads/2009/10/wordpress-rss-feed-error.gif" alt="Wordpress RSS Feed Error" width="468" height="125" /></a></p>
<div style="clear:both;"></div>
<p><strong>How to Fix</strong></p>
<ul>
<li>Deactivate all plug-ins loaded and activate plug-in one by one to catch exact plug-in creating problem.</li>
<li>Try disabling wordpress cache plug-ins. Wordpress cache plugin don&#8217;t work well with some hosting.</li>
<li>Check your theme files, wp-config.php file for blank lines. It is hard and time consuming to check all wordpress core files. Thanks yo fiyaga for usefull wordpress plugin &#8220;<a rel="nofollow" href="http://wordpress.org/extend/plugins/fix-rss-feed/" target="_blank">Fix RSS Feed</a>&#8221; that automatically detect blank or white space in the wordpress core files.</li>
<li>Make sure to ping your feed in feedburner or similar service you are using.</li>
</ul>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/fix-wordpress-rss-feed-xml-parsing-errors-xml-or-text-declaration-not-at-start-of-entity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Window 7 RC Installation Error Fix &#8211; No device drivers were found. Make sure that the installation media conains the correct drivers</title>
		<link>http://www.bala-krishna.com/window-7-rc-installation-error-fix-no-device-drivers-were-found-make-sure-that-the-installation-media-conains-the-correct-drivers/</link>
		<comments>http://www.bala-krishna.com/window-7-rc-installation-error-fix-no-device-drivers-were-found-make-sure-that-the-installation-media-conains-the-correct-drivers/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 09:32:46 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Operating System Tutorial]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows7]]></category>
		<category><![CDATA[windows7 installation]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=553</guid>
		<description><![CDATA[
			
				
			
		
If you are facing this error and could not find a solution then you are at right place. I hope what i am sharing here could solve your issue.
This error comes most likely due to corrupted installation media so to work correctly you just need to make sure installation media you are using is fine. [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/window-7-rc-installation-error-fix-no-device-drivers-were-found-make-sure-that-the-installation-media-conains-the-correct-drivers/&title=Window+7+RC+Installation+Error+Fix+&#8211;+No+device+drivers+were+found.+Make+sure+that+the+installation+media+conains+the+correct+drivers&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fwindow-7-rc-installation-error-fix-no-device-drivers-were-found-make-sure-that-the-installation-media-conains-the-correct-drivers%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fwindow-7-rc-installation-error-fix-no-device-drivers-were-found-make-sure-that-the-installation-media-conains-the-correct-drivers%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>If you are facing this error and could not find a solution then you are at right place. I hope what i am sharing here could solve your issue.</p>
<p>This error comes most likely due to corrupted installation media so to work correctly you just need to make sure installation media you are using is fine.  So do the following to make sure your installation media is error free:</p>
<ol>
<li>Make sure ISO image you have downloaded is not corrupted in transfer.</li>
<li>Make sure ISO image is not corrupted during transfer from one PC to another PC. (I am specially mentioning here because this was my case. I have downloaded ISO image on one machine but intended installation machine was different. so the transfer media such as USB hard disk or Pan Drive was used.)</li>
<li>Make sure your ISO image burned without error on DVD.</li>
</ol>
<p>Now, next question is how you can verify downloaded ISO file.  There are several way to do verify ISO file accuracy.</p>
<ol>
<li>Try to extract iso file content in a folder.  ISO files should be extracted without error. You can use WinRAR or  Magic ISO to extract ISO image file content.</li>
<li>There is a chance to extract ISO file without error even if few files inside ISO are corrupted so you need to double verify image file. Follow next step for additional verification.</li>
<li>Download MagicDisk (Free Utility) and install in your system. MagicDisk is free virtual disk program that can mount any iso or nrg(nero image) to a Virtual CD. Try mounting downloaded image file from this utility.  If image file loaded correctly in a newly created Virtual CD disk then your installation media is fine and you can burn ISO file into DVD media.</li>
<li>Make sure to check data validation after DVD burning so you can make sure DVD burned is error free.</li>
</ol>
<p><strong>Window 7 Gallery </strong></p>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2009/10/windows7-desktop2.png"><img class="alignleft size-medium wp-image-556" title="Windows7 Desktop" src="http://www.bala-krishna.com/wp-content/uploads/2009/10/windows7-desktop2-300x224.png" alt="Windows7 Desktop" width="300" height="224" /></a></p>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2009/10/windows7-desktop.png"><img class="alignleft size-medium wp-image-555" title="Windows7 Desktop" src="http://www.bala-krishna.com/wp-content/uploads/2009/10/windows7-desktop-300x225.png" alt="Windows7 Desktop" width="300" height="225" /></a></p>
<div style="clear:both;"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/window-7-rc-installation-error-fix-no-device-drivers-were-found-make-sure-that-the-installation-media-conains-the-correct-drivers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP Call to undefined function vendor() Error</title>
		<link>http://www.bala-krishna.com/cakephp-call-to-undefined-function-vendor-error/</link>
		<comments>http://www.bala-krishna.com/cakephp-call-to-undefined-function-vendor-error/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 16:41:19 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[PHP Programming]]></category>
		<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP MVC Framework]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=544</guid>
		<description><![CDATA[
			
				
			
		
Vendor() function basically used to load third party library in CakePHP. This function have been deprecated in the recent CakePHP releases.  The vendor function in earlier CakePHP releases has been replace with new App::import method that is more user friendly and allow you to include third party library in several ways.
To fix the issue simply replace [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/cakephp-call-to-undefined-function-vendor-error/&title=CakePHP+Call+to+undefined+function+vendor()+Error&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fcakephp-call-to-undefined-function-vendor-error%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fcakephp-call-to-undefined-function-vendor-error%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Vendor() function basically used to load third party library in CakePHP. This function have been deprecated in the recent CakePHP releases.  The vendor function in earlier CakePHP releases has been replace with new <strong><em>App::import</em></strong> method that is more user friendly and allow you to include third party library in several ways.</p>
<p>To fix the issue simply replace vendor function with new method.  New import method return boolean true or false depend on the library loaded or not.  This is useful in some context.  With new import method you have option to verify third party library loading and act accordingly so your application never fail.</p>
<p><strong>Old Method</strong></p>
<pre class="brush: php;">vendor('facebook/facebook');</pre>
<p><strong>New Method</strong></p>
<pre class="brush: php;">App::import('Vendor', 'facebook/facebook');</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/cakephp-call-to-undefined-function-vendor-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Cryptography</title>
		<link>http://www.bala-krishna.com/what-is-cryptography/</link>
		<comments>http://www.bala-krishna.com/what-is-cryptography/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 12:28:46 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Operating System Tutorial]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=532</guid>
		<description><![CDATA[
			
				
			
		
Cryptography is the process of transforming digital information into an unintelligible form so that it can be sent over unsafe channel of communication.  The transformed data called cipher text that is in the form that nobody can understand.  The transformation process handled by a data key.  This key required to transform cipher text into original [...]]]></description>
			<content:encoded><![CDATA[<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/what-is-cryptography/&title=What+is+Cryptography&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img
src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fwhat-is-cryptography%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fwhat-is-cryptography%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Cryptography is the process of transforming digital information into an unintelligible form so that it can be sent over unsafe channel of communication.  The transformed data called cipher text that is in the form that nobody can understand.  The transformation process handled by a data key.  This key required to transform cipher text into original state. The stage of conversion of the digital data into unintelligible form is called Encrypting or Encoding.  Reconverting the encoded data back into the original form by the authorized person using the appropriate key is called decrypting or decoding. Below is basic diagram explaining encryption and decryption process.</p>
<p><span style="color: #ff0000;"><strong>ENCRYPTION: </strong></span></p>
<p>Ascii Text Or Data &#8211;&gt; Algorithm &#8211;&gt; Secret Key &#8211;&gt; Cipher Text</p>
<p><span style="color: #ff0000;"><strong>DECRYPTION: </strong></span></p>
<p>Cipher Text  &#8211;&gt; Algorithm &#8211;&gt; Secret Key &#8211;&gt; Original Data</p>
<p><strong>Encryption Algorithm<br />
</strong></p>
<ul>
<li>Transposition Cipher</li>
<li>Code System</li>
<li>Data Encryption Standard (DES)</li>
<li>RSA Approach<strong><br />
</strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/what-is-cryptography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
