<?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>Nirvaat IT Services - Web Development, Linux Hosting and Domain Registration</title>
	<atom:link href="http://www.nirvaat.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nirvaat.com</link>
	<description></description>
	<lastBuildDate>Sun, 25 Jul 2010 09:44:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>MySql Dump Using a PHP Script</title>
		<link>http://www.nirvaat.com/blog/web-development/mysql-dump-using-php-script/</link>
		<comments>http://www.nirvaat.com/blog/web-development/mysql-dump-using-php-script/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 09:37:15 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Quick Fixes]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.nirvaat.com/?p=180</guid>
		<description><![CDATA[When you need to take a backup of a large MySql database, then &#8220;mysqldump&#8221; command come most handy and does the task in few seconds. But for that we need to access the web server or database through SSH. And database access in 99% cases is not allowed from remote location for security reasons. I [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.nirvaat.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/180.jpg&amp;w=200&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>When you need to take a backup of a large MySql database, then &#8220;mysqldump&#8221; command come most handy and does the task in few seconds. But for that we need to access the web server or database through SSH. And database access in 99% cases is not allowed from remote location for security reasons.</p>
<p>I found myself in such situation recently and PhpMyAdmin export feature was not working due to script timeout or memory issues. So I googled for this and after 15-20 minutes of searching I found this very useful and working small script for the job.</p>
<p><code><br />
$User = ""; // Put New user -- CPanel user or MySQL user with All permissions is fine.<br />
$Password = ""; // Put New Password<br />
$DatabaseName = ""; // Put Database name<br />
$File = ""; // Put the complete path here -- /home/user/database.sql for example<br />
$Results = shell_exec( "mysqldump --allow-keywords --opt -u$User -p$Password $DatabaseName &gt; $File");<br />
</code></p>
<p>Just upload the file on the web server and execute it. Do remember to specify the path of the file so that it is accessible from the web e.g. provide any path which is inside public_html or www folder on most servers.</p>
<p>It will take just few seconds for 300-400MB database and then you can download the file and use it as you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/blog/web-development/mysql-dump-using-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing field separater in CSV files</title>
		<link>http://www.nirvaat.com/blog/quick-fixes/changing-field-separater-in-csv-files/</link>
		<comments>http://www.nirvaat.com/blog/quick-fixes/changing-field-separater-in-csv-files/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 05:17:51 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Quick Fixes]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[Field Separator]]></category>
		<category><![CDATA[MS Excel]]></category>

		<guid isPermaLink="false">http://www.nirvaat.com/?p=165</guid>
		<description><![CDATA[Usually when you save file as CSV file the fields are separated by ","; but sometimes this causes problems in field separation if the content also contains comma.  ]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.nirvaat.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/165.jpg&amp;w=200&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>Many times it is needed to save excel sheet as Comma Separated Value (CSV) text file to import in the MySql database. Usually when you save file as CSV file the fields are separated by &#8220;,&#8221;; but sometimes this causes problems in field separation if the content also contains comma.</p>
<p>To define a unique field for your CSV file field separator in your Windows Vista/XP systems, follow the following steps:</p>
<ol>
<li>Open control panel.</li>
<li>Open &#8220;Regional and Language Options&#8221;.</li>
<li>In &#8220;Formats&#8221; tab click &#8220;Customize This format&#8221;.</li>
<li>Then in the list separator text box enter the desired field separator and click &#8220;ok&#8221;.</li>
<li>Click &#8220;Ok&#8221;.</li>
</ol>
<p>Now when you save your excel file as CSV, the new field separators will be used.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/blog/quick-fixes/changing-field-separater-in-csv-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating Nokia E72 phone software</title>
		<link>http://www.nirvaat.com/blog/quick-fixes/updating-nokia-e72-phone-software/</link>
		<comments>http://www.nirvaat.com/blog/quick-fixes/updating-nokia-e72-phone-software/#comments</comments>
		<pubDate>Sun, 23 May 2010 16:49:46 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Quick Fixes]]></category>
		<category><![CDATA[Nokia E72]]></category>
		<category><![CDATA[Nokia PC Suite]]></category>

		<guid isPermaLink="false">http://www.nirvaat.com/?p=162</guid>
		<description><![CDATA[I just bought a Nokia E72, and like most of the people, when I came to know that the firmware has updates, I tried updating the phone software. As given in the manual, I tried installing Nokia PC suite which asked me to install Nokia Software updater in order to update the phone software from PC.]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.nirvaat.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/162.jpg&amp;w=200&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>I just bought a Nokia E72, and like most of the people, when I came to know that the firmware has updates, I tried updating the phone software. As given in the manual, I tried installing Nokia PC suite which asked me to install Nokia Software updater in order to update the phone software from PC.</p>
<p>But when I tried connecting my device with my PC, though it connected in USB mode, but it kept asking to connect the device in PC Suite mode, while my Nokia phone was in PC Suite mode only. I tried connecting disconnecting multiple times, but with the same result. I am using Windows Vista Home Premium 64bit operating system. I do not know if that is causing an issue with the Nokia PC suite. I tried Googling but there was not much help available.</p>
<p>Then I accidentally landed on the, Nokia.co.in support page to check for software updates for my PC software. I thought if there were some issue with the software then they (Nokia guys) might have fixed it in new releases. But I found that I already have the latest software.</p>
<p>Then I found a short tip mentioned there which described the process of updating the phone software from the phone itself, while the actual software updater asks to use PC updater to update the phone software. It is very simple as given below:</p>
<ol>
<li>Key *#0000# into your phone&#8217;s home screen.</li>
<li>Select <strong>Options</strong> &gt; <strong>Check for updates</strong>.</li>
<li>Follow the on-screen prompts until your update is complete!</li>
</ol>
<p>And that is it. I tried it and it worked. My PC still does not recognize the PC suite mode of the device, but now I do not have any urgent need to do that. They might fix it in near future, but untill then I can update my phone software without it <img src='http://www.nirvaat.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/blog/quick-fixes/updating-nokia-e72-phone-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Issue of wierd characters in a dynamic PHP web page</title>
		<link>http://www.nirvaat.com/blog/web-development/issue-of-wierd-characters-in-a-dynamic-web-page/</link>
		<comments>http://www.nirvaat.com/blog/web-development/issue-of-wierd-characters-in-a-dynamic-web-page/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 09:36:00 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Quick Fixes]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.nirvaat.com/?p=157</guid>
		<description><![CDATA[When using special characters in UTF-8 character encoding, sometimes when you read something from mysql database then it is not displayed properly on the web page. Many of you like me may try to change the character encoding of the HTML page to ISO-8859-1, that may work sometimes but this is not the proper solution [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.nirvaat.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/157.jpg&amp;w=200&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>When using special characters in UTF-8 character encoding, sometimes when you read something from mysql database then it is not displayed properly on the web page. Many of you like me may try to change the character encoding of the HTML page to ISO-8859-1, that may work sometimes but this is not the proper solution to the problem.</p>
<p>Irrespective of the character encoding used by MySql to store the text data, when you query something using SQL it returns the data encoded in the latin charset. This is defined in the mysql config files, as described below:</p>
<blockquote><p><em>The character_set_results system variable indicates the character set in which the server returns query results to the client. This includes result data such as column values, and result metadata such as column names.</em></p></blockquote>
<p>To change the character encoding to UTF8 or other, you need to use &#8220;mysql_set_charset()&#8221; mysql function in PHP. Pass the correct encoding name required and now future mysql queries will return result using new encoding.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/blog/web-development/issue-of-wierd-characters-in-a-dynamic-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elance ID &#8211; ingariza</title>
		<link>http://www.nirvaat.com/uncategorized/elance-id-ingariza/</link>
		<comments>http://www.nirvaat.com/uncategorized/elance-id-ingariza/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 12:39:21 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Testimonials]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=143</guid>
		<description><![CDATA[This is the first time I used Elance, and I was blessed having Nirvaat as my provider, very professional, pro-active, great communication , on-time delivery, solve every problem I had. I recommend Nirvaat if you want your job on time, with quality and great support. Thanks !!!!!!]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.nirvaat.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/143.jpg&amp;w=200&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>This is the  first time I used Elance, and I was blessed having Nirvaat as my  provider, very professional, pro-active, great communication , on-time  delivery, solve every problem I had. I recommend Nirvaat if you want  your job on time, with quality and great support. Thanks !!!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/uncategorized/elance-id-ingariza/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elance ID &#8211; catchlight</title>
		<link>http://www.nirvaat.com/testimonials/elance-id-catchlight/</link>
		<comments>http://www.nirvaat.com/testimonials/elance-id-catchlight/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 12:38:02 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=140</guid>
		<description><![CDATA[This was a seemingly small job, but a very important one and one that needed to be done right. A certain level of knoowledge is required for this type of task and nirvaat carried it out beautyifully. Nice work and I&#8217;d reccommend this provider to anyone working with WordPress.]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.nirvaat.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/140.jpg&amp;w=200&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>This was a  seemingly small job, but a very important one and one that needed to be  done right. A certain level of knoowledge is required for this type of  task and nirvaat carried it out beautyifully. Nice work and I&#8217;d  reccommend this provider to anyone working with WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/testimonials/elance-id-catchlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elance ID &#8211; robalfano</title>
		<link>http://www.nirvaat.com/testimonials/elance-id-robalfano/</link>
		<comments>http://www.nirvaat.com/testimonials/elance-id-robalfano/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 12:36:54 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=137</guid>
		<description><![CDATA[Excellent web developer. Has a great understanding of web projects and how to turn that into a working application online. I couldn&#8217;t be more satisfied with the project.]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.nirvaat.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/137.jpg&amp;w=200&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>Excellent web  developer.  Has a great understanding of web projects and how to turn  that into a working application online.  I couldn&#8217;t be more satisfied  with the project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/testimonials/elance-id-robalfano/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elance ID &#8211; gtownwebdev</title>
		<link>http://www.nirvaat.com/uncategorized/elance-id-gtownwebdev/</link>
		<comments>http://www.nirvaat.com/uncategorized/elance-id-gtownwebdev/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 12:35:13 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Testimonials]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=133</guid>
		<description><![CDATA[Nirvaat was responsive, fast, knowledgeable, professional and the price was great. I am thrilled to have found him!]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.nirvaat.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/133.jpg&amp;w=200&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>Nirvaat was  responsive, fast, knowledgeable, professional and the price was great. I  am thrilled to have found him!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/uncategorized/elance-id-gtownwebdev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouAboutMe.com &#8211; Photo Review Application</title>
		<link>http://www.nirvaat.com/portfolio/youaboutme-com-photo-review-application/</link>
		<comments>http://www.nirvaat.com/portfolio/youaboutme-com-photo-review-application/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 09:01:56 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=108</guid>
		<description><![CDATA[It is a custom developed PHP website using MySql as database back-end. The challenging part of the application was to generate random questions for visitor on home page load and keep it changing without page refresh, as soon as the user votes for a question. ]]></description>
			<content:encoded><![CDATA[<div>
<p><a href="http://www.nirvaat.com/wp-content/uploads/2010/03/YouAboutMe.com_1263482933448.jpg"><img class="size-medium wp-image-152 alignleft" title="YouAboutMe.com_1263482933448" src="http://www.nirvaat.com/wp-content/uploads/2010/03/YouAboutMe.com_1263482933448-300x218.jpg" alt="" width="300" height="218" /></a></p>
<p><a title="YouAboutMe.com" href="http://www.youaboutme.com" target="_blank">YouAboutMe.com</a> or YAM in short allows users to upload their pictures and add a question  with each set of photos. Then any visitor of the site can post their  answer to the user question anonymously. Users can view the details of  answer given and percentage of users who selected different answers.</p>
<p>It is a custom developed PHP website using MySql as database  back-end. The challenging part of the application was to generate random  questions for visitor on home page load and keep it changing without  page refresh, as soon as the user votes for a question. It uses jQuery  library for handling JS effects and voting. As application deals with  lots of images also &#8211; image resizing and optimization is done when user  upload new images.</p>
<p>Application has predefined set of questions for users to chose from,  when creating a new campaign, and option to add custom question and  answers also.</p>
<p>It is a great application and I enjoyed working on it a lot. The  development is still on.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/portfolio/youaboutme-com-photo-review-application/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MenusNearU.com &#8211; CakePHP Application</title>
		<link>http://www.nirvaat.com/portfolio/menusnearu-com-cakephp-application/</link>
		<comments>http://www.nirvaat.com/portfolio/menusnearu-com-cakephp-application/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 09:01:17 +0000</pubDate>
		<dc:creator>Rajendra</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://nirvaat.com/?p=106</guid>
		<description><![CDATA[The CakePHP application is a online directory of the restaurants and their menus, integrated with Google Maps. You can view the online site at www.menuesnearu.com I just got this project on Elance for maintenance and enhancements. It is a huge application written in CakePHP, I am working on the redesigning of the page layouts and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nirvaat.com/wp-content/uploads/2010/03/menusnearu-com.jpg"><img class="alignleft size-medium wp-image-154" title="menusnearu-com" src="http://www.nirvaat.com/wp-content/uploads/2010/03/menusnearu-com-300x233.jpg" alt="" width="300" height="233" /></a></p>
<p>The CakePHP application is a online directory of the restaurants and  their menus, integrated with Google Maps. You can view the online site  at <a title="Menus Near U" href="http://www.menusnearu.com/" target="_blank">www.menuesnearu.com</a> I just got this project on Elance for maintenance and enhancements. It  is a huge application written in CakePHP, I am working on the  redesigning of the page layouts and adding new features like facebook  integration and UI enhancement implementing AJAX.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirvaat.com/portfolio/menusnearu-com-cakephp-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
