<?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>am i works?</title>
	<atom:link href="http://amiworks.co.in/talk/feed/" rel="self" type="application/rss+xml" />
	<link>http://amiworks.co.in/talk</link>
	<description>all about my work</description>
	<lastBuildDate>Sun, 14 Mar 2010 03:17:45 +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>CodeIgniter 2.0 Is Baking</title>
		<link>http://amiworks.co.in/talk/codeigniter-2-0-is-baking/</link>
		<comments>http://amiworks.co.in/talk/codeigniter-2-0-is-baking/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 06:48:30 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[codeigniter 2.0]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/codeigniter-2-0-is-baking/</guid>
		<description><![CDATA[Just when I was loosing all hopes about CodeIgniter, yesterday EllisLab announced about their move to assembla and mercurial, in that there was a small but significant news about CodeIgniter 2.0.
A quick look into the change log revealed
PHP 4 support is deprecated.  Features new to 2.0.0 may not be support PHP 4, and all [...]]]></description>
			<content:encoded><![CDATA[<p>Just when I was loosing all hopes about CodeIgniter, yesterday EllisLab <a href="http://codeigniter.com/news/ellislab_moves_to_mercurial_assembla_bitbucket_codeigniter_2.0_baking/">announced</a> about their move to assembla and mercurial, in that there was a small but significant news about CodeIgniter 2.0.</p>
<p>A quick look into the <a href="http://bitbucket.org/ellislab/codeigniter/src/tip/user_guide/changelog.html">change log</a> revealed</p>
<pre>PHP 4 support is deprecated.  Features new to 2.0.0 may not be support PHP 4, and all legacy features will no longer support PHP 4 as of 2.1.0.</pre>
<p>This is what I was waiting for. What it means, as pointed by <a href="http://philsturgeon.co.uk/news/2010/03/codeigniter-2">Phil Sturgeon</a> and <a href="http://www.haughin.com/2010/03/11/codeigniter-2-critical-changes-implications/">Elliot Haughin</a>, is that CI 2.0 will not run on PHP 4, but more importantly, it can now take full advantages of PHP 5.</p>
<p>One other thing that I liked is</p>
<pre>Added ability to set &quot;Package&quot; paths - specific paths where the Loader and Config classes should try to look first for a requested file.  This allows distribution of sub-applications with their own libraries, models, config files, etc. in a single &quot;package&quot; directory.  </pre>
<p>Which means that now we can create common area where we can keep helpers, views and libraries that needs to be shared between two applications. </p>
<p>While there are many more updates these two got me excited. </p>
<p>For now let’s wait for them to release, meanwhile you can sign up for Bitbucket and follow the updates for <a href="http://bitbucket.org/ellislab/codeigniter/">CodeIgniter Project</a>.</p>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/codeigniter-2-0-is-baking/">CodeIgniter 2.0 Is Baking</a> was first posted on March 12, 2010 at 12:18 pm.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/codeigniter-2-0-is-baking/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to get Latitude/Longitude from an address (or Geocoding ) using PHP</title>
		<link>http://amiworks.co.in/talk/how-to-get-latitudelongitude-from-an-address-or-geocoding-using-php/</link>
		<comments>http://amiworks.co.in/talk/how-to-get-latitudelongitude-from-an-address-or-geocoding-using-php/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 10:02:15 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[how too?]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/how-to-get-latitudelongitude-from-an-address-or-geocoding-using-php/</guid>
		<description><![CDATA[While Google’s documents for maps API does good job in showing how to get lat/long from an address in JavaScript they do not really show any example of doing the same with PHP.
&#160;
So to make you life simple here is a small script in PHP that does that.
&#160;
&#160;
$geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address=573/1,+Jangli+Maharaj+Road,+Deccan+Gymkhana,+Pune,+Maharashtra,+India&#38;sensor=false');

$output= json_decode($geocode);

$lat = $output-&#62;results[0]-&#62;geometry-&#62;location-&#62;lat;
$long = $output-&#62;results[0]-&#62;geometry-&#62;location-&#62;lng;
&#160;
The line above [...]]]></description>
			<content:encoded><![CDATA[<p>While Google’s documents for maps API does good job in showing how to get lat/long from an address in JavaScript they do not really show any example of doing the same with PHP.</p>
<p>&#160;</p>
<p>So to make you life simple here is a small script in PHP that does that.</p>
<p>&#160;</p>
<p>&#160;</p>
<pre class="code">$geocode=file_get_contents('<a href="http://maps.google.com/maps/api/geocode/json?address=573/1,+Jangli+Maharaj+Road,+Deccan+Gymkhana,+Pune,+Maharashtra,+India&amp;sensor=false');">http://maps.google.com/maps/api/geocode/json?address=573/1,+Jangli+Maharaj+Road,+Deccan+Gymkhana,+Pune,+Maharashtra,+India&amp;sensor=false');</a>

$output= json_decode($geocode);

$lat = $output-&gt;results[0]-&gt;geometry-&gt;location-&gt;lat;
$long = $output-&gt;results[0]-&gt;geometry-&gt;location-&gt;lng;</pre>
<p>&#160;</p>
<p>The line above makes a request to Google maps API. Passes the address, and receives the response in JSON format.</p>
<p>The URL has following options </p>
<pre><a href="http://maps.google.com/maps/api/geocode/output?parameters">http://maps.google.com/maps/api/geocode/<i>output</i>?<i>parameters</a></i></pre>
<p>where <em>output</em> can be 1) JSON or 2) XML </p>
<p>For more details about parameters check out the <a href="http://code.google.com/apis/maps/documentation/geocoding/index.html">Google’s geocoding documentation</a>.</p>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/how-to-get-latitudelongitude-from-an-address-or-geocoding-using-php/">How to get Latitude/Longitude from an address (or Geocoding ) using PHP</a> was first posted on March 10, 2010 at 3:32 pm.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/how-to-get-latitudelongitude-from-an-address-or-geocoding-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup your WordPress blog to Rackspace Cloud Files</title>
		<link>http://amiworks.co.in/talk/backup-your-wordpress-blog-to-rackspace-cloud-files/</link>
		<comments>http://amiworks.co.in/talk/backup-your-wordpress-blog-to-rackspace-cloud-files/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 12:17:23 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[amazon s3]]></category>
		<category><![CDATA[backup plugin]]></category>
		<category><![CDATA[rackspace clodfiles]]></category>
		<category><![CDATA[wodpress backup]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/backup-your-wordpress-blog-to-rackspace-cloud-files/</guid>
		<description><![CDATA[We all have heard of importance of regular backups, but for a long time I had neglected it for my blog. But recently things happened that prompted me to take backups. 
While I was looking for option to keep backups, I found Rackspace Cloud Files to be a very affordable option, this prompted me to [...]]]></description>
			<content:encoded><![CDATA[<p>We all have heard of importance of regular backups, but for a long time I had neglected it for my blog. But recently things happened that prompted me to take backups. </p>
<p>While I was looking for option to keep backups, I found Rackspace Cloud Files to be a very affordable option, this prompted me to write <strong><a title="All in one backup, restore and migration plugin for WordPress" href="http://amiworks.com/simple-wordpress-backup.html">wpSimpleBackup a WordpPress plug-in that&#160; will take the backups to cloud files</a></strong>, and then I also added support to take backup to Amazon S3 or FTP to another server. But <a href="http://amiworks.co.in/talk/category/wordpress/">unlike my other plugins</a>, this one is not free.</p>
<p><a href="http://amiworks.co.in/talk/wp-content/uploads/2010/03/wpsimplebackup.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="wpsimplebackup" border="0" alt="wpsimplebackup" src="http://amiworks.co.in/talk/wp-content/uploads/2010/03/wpsimplebackup_thumb.png" width="400" height="297" /></a> </p>
<p><strong>Features</strong></p>
<ul>
<li><strong>Backup your entire blog not just database</strong>. It takes backup of the wp-config.php, database, and plugins, themes and all other files in wp-content folder.</li>
<li><strong>Simple and speedy restore</strong>. All you have to do is to move the restore script to the location where you need to do restore, it will automatically fetch the backup file and restore your blog.</li>
<li><strong>Even simpler migration</strong>. if you have ever moved you web server or domain you know the pain it is, with the restore script you get the simple Wordpress like installation script which not only installs the Wordpress but also restores all you backed up settings, even updating the domain urls if needed. Migration will never get easier then this.</li>
<li><strong>Not one but three ways to keep your backups</strong>, while I personally use Rackspace CloudFiles, you have a choice to use Amazon S3 or even FTP.</li>
<li><strong>Ability to take manual Backups.</strong>&#160; While we do have ability to automatically take backups, some times it makes sense to take backups manually, just click a button, and back up is done.</li>
<li><strong>Restrict number of backups</strong>. while we allow for any number of backups, in services like S3 or Cloud Files, keeping large number of backups can become costly over a period of time. To avoid that you can specify number of latest backups you want to keep, and the backup plugin will take care of the rest.</li>
<li><strong>Backup Scheduling</strong>. It provides the ability to take backups automatically every day, once a week or month.</li>
</ul>
<p>You can <a href="http://amiworks.com/simple-wordpress-backup.html">buy wpSimpleBackup plugin here</a>.</p>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/backup-your-wordpress-blog-to-rackspace-cloud-files/">Backup your WordPress blog to Rackspace Cloud Files</a> was first posted on March 5, 2010 at 5:47 pm.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/backup-your-wordpress-blog-to-rackspace-cloud-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHPCamp is Back</title>
		<link>http://amiworks.co.in/talk/phpcamp-is-back/</link>
		<comments>http://amiworks.co.in/talk/phpcamp-is-back/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 09:57:13 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[phpcamp]]></category>
		<category><![CDATA[phpcamppune10]]></category>
		<category><![CDATA[pune php events]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/phpcamp-is-back/</guid>
		<description><![CDATA[Preparations are on for second edition of India’s biggest un-conference for PHP developers.
 
It is going to be held on 9 January 2010 at Symbiosis Centre For Distance Learning, Pune.
Check out the talks and if you think you can give a better one then please propose your talk.
If you have not registered yet, then it [...]]]></description>
			<content:encoded><![CDATA[<p>Preparations are on for second edition of <a href="http://amiworks.co.in/talk/phpcamp-indias-biggest-unconference/">India’s biggest un-conference for PHP</a> developers.</p>
<p><a href="http://phpcamp.org"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="365418978" border="0" alt="365418978" src="http://amiworks.co.in/talk/wp-content/uploads/2009/12/365418978.png" width="200" height="156" /></a> </p>
<p>It is going to be held on <strong>9 January 2010</strong> at Symbiosis Centre For Distance Learning, Pune.</p>
<p>Check <a href="http://phpcamp.org/Sessions.html">out the talks</a> and if you think you can give a better one then please propose your talk.</p>
<p>If you have not registered yet, then it is the <a href="http://phpcamp.eventbrite.com/">right time to register</a>. Like last year we hope to have a big gathering and lot’s of fun.</p>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/phpcamp-is-back/">PHPCamp is Back</a> was first posted on December 31, 2009 at 3:27 pm.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/phpcamp-is-back/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Fix MySQL Error &#8211; Error Code 30</title>
		<link>http://amiworks.co.in/talk/how-to-fix-mysql-error-error-code-30/</link>
		<comments>http://amiworks.co.in/talk/how-to-fix-mysql-error-error-code-30/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 18:31:00 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[how too?]]></category>
		<category><![CDATA[/tmp corrupt]]></category>
		<category><![CDATA[errorcode 30]]></category>
		<category><![CDATA[mysql error]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/how-to-fix-mysql-error-error-code-30/</guid>
		<description><![CDATA[Yesterday was one of those days when things that can go wrong went wrong and today was MySQL day, and problem when accessing any table on a live site resulted in following error 
MySQL Error - Can't create/write to file '/tmp/#sql_7d3f_0.MYI' (Errcode: 30)
It took me some time to figure out that the error was due [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday was one of those days when things that can go wrong went wrong and today was MySQL day, and problem when accessing any table on a live site resulted in following error </p>
<pre>MySQL Error - Can't create/write to file '/tmp/#sql_7d3f_0.MYI' (Errcode: 30)</pre>
<p>It took me some time to figure out that the error was due to <em>/usr/tmpDSK</em> getting corrupted, and and not really a problem with MySQL or our database as we were thinking all this time, and as usual google came to rescue. </p>
<p>Here are the steps to fix this for cpanel users…&#160; run the following commands in the order mentioned</p>
</p>
<pre>/usr/sbin/lsof /tmp

/bin/umount -l /tmp

/bin/umount -l /var/tmp

/bin/rm -fv /usr/tmpDSK

/scripts/securetmp</pre>
<p></p>
<p>This will create a new <em>/tmp</em> partition for you and the problem will go away. By the way error code 30 means that file system is read only.</p>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/how-to-fix-mysql-error-error-code-30/">How To Fix MySQL Error &ndash; Error Code 30</a> was first posted on December 3, 2009 at 12:01 am.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/how-to-fix-mysql-error-error-code-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barcamp Pune 6</title>
		<link>http://amiworks.co.in/talk/barcamp-pune-6/</link>
		<comments>http://amiworks.co.in/talk/barcamp-pune-6/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 14:01:58 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/barcamp-pune-6/</guid>
		<description><![CDATA[The 6th Edition of Barcamp Pune is back in town on 14th November 2009 after almost an year.
If you don’t know what is Barcamp check out the nice article by PuneTech and if you are students then why you should bunk the college to attend it.
My first Barcamp was Barcamp Pune 3, which made me [...]]]></description>
			<content:encoded><![CDATA[<p>The 6th Edition of Barcamp Pune is back in town on 14th November 2009 after almost an year.</p>
<p>If you don’t know what is Barcamp check out the nice <a href="http://punetech.com/what-is-a-barcamp-and-why-you-should-attend/">article by PuneTech</a> and if you are students then <a href="http://punetech.com/why-students-should-bunk-classes-to-attend-barcamppune-projects-internships-recos/">why you should bunk the college</a> to attend it.</p>
<p>My first Barcamp was <a href="http://www.barcamp.org/BarCampPune3">Barcamp Pune 3</a>, which made me an speaker and also inspired me to organize <a href="http://amiworks.co.in/talk/phpcamp-indias-biggest-unconference/">biggest PHPCamp in India</a>.</p>
<p><a href="http://amiworks.co.in/talk/wp-content/uploads/2009/11/kritybarcamplogomedium.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="krity-barcamp-logo-medium" border="0" alt="krity-barcamp-logo-medium" align="right" src="http://amiworks.co.in/talk/wp-content/uploads/2009/11/kritybarcamplogomedium_thumb.png" width="310" height="100" /></a> </p>
<p>If you want to know what happened in pervious editions of Barcamp then check out the pictures linked below( from my camera).</p>
<ol>
<li><a href="http://www.flickr.com/photos/thecancerus/sets/72157603933514417/">Barcamp Pune 3</a> </li>
<li><a href="http://www.flickr.com/photos/thecancerus/sets/72157603933508319/">Barcamp Pune 4</a></li>
<li><a href="http://picasaweb.google.co.in/thecancerus/BarcampPune5?feat=directlink">Barcamp Pune 5</a></li>
</ol>
<p>Off course they are not all the pics, Google to see all the rest of them.</p>
<p>I hope to see you all their.</p>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/barcamp-pune-6/">Barcamp Pune 6</a> was first posted on November 12, 2009 at 7:31 pm.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/barcamp-pune-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where is MySQL Gone Away?</title>
		<link>http://amiworks.co.in/talk/where-is-mysql-gone-away/</link>
		<comments>http://amiworks.co.in/talk/where-is-mysql-gone-away/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 16:51:09 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[how too?]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/?p=316</guid>
		<description><![CDATA[Last Sunday I got to work on a very interesting problem in WordPress which I initially thought could be solved in like 5 mins, but alas it took me almost 7 hours before I found and fixed the problem.
Let me describe the problem, I was running a simple xml parsing script whose task was to [...]]]></description>
			<content:encoded><![CDATA[<p>Last Sunday I got to work on a very interesting problem in WordPress which I initially thought could be solved in like 5 mins, but alas it took me almost 7 hours before I found and fixed the problem.</p>
<p>Let me describe the problem, I was running a simple xml parsing script whose task was to parse the xml file and insert the content into WordPress database as a post, everything was working fine except the <em>‘INSERT’</em> statement was failing with out any errors. Basically everything would run but nothing would get inserted into database and no errors. We had used the <em>‘wp_insert_post’</em> function in  <em>‘post.php’</em> file to handle the insertion of post, which was returning ‘0’ instead.</p>
<p>After lot’s of time spend checking and cross checking the sql statements for error and PHP code logic, i finally found the problem which was a small kinda cryptic error <strong>‘MySQL server has gone away’ </strong>for every single query that was getting executed in the script.</p>
<p>Well, a quick google search took me to <a title="MySQL server gone away" href="http://dev.mysql.com/doc/refman/5.0/en/gone-away.html">MySQL manual</a> page where it list bunch of possibilities on why the error might be coming.</p>
<p>To me the most logical one were</p>
<ol>
<li>
<ol>
<li>You tried to run a query after closing the connection to the server. This indicates a logic error in the application that should be corrected.</li>
<li>A client application running on a different host does not have the necessary privileges to connect to the MySQL server from that host.</li>
<li>You have encountered a timeout on the server side and the automatic reconnection in the client is disabled (the reconnect flag in the MYSQL structure is equal to 0).</li>
<li>You can also get these errors if you send a query to the server that is incorrect or too large.</li>
<li>You are using a Windows client and the server had dropped the connection (probably because wait_timeout expired) before the command was issued.</li>
</ol>
</li>
</ol>
<p>I investigated each one but it turned out that because a query was taking a bit to long to execute MySQL closed the connection and refused all further request from the client.</p>
<p>So you might be wondering what was the <strong>Solution </strong>to this problem.</p>
<p>Well <a href="http://robsnotebook.com/">Rob of Rob’s notebook</a> had the almost perfect solution for it. He <a href="http://robsnotebook.com/wordpress-mysql-gone-away">created a replacement file for<em> ‘wpdb.php’</em></a> which takes care of this problem, yeah it is temporary and you have to remember to replace this file every time you do an WordPress upgrade but it works.</p>
<p>If you are facing this problem go download it and replace you <em>‘wpdb’</em> file and save yourself some time.</p>
<div style="border-bottom: #aaaaaa 1px solid; border-left: #aaaaaa 1px solid; padding-bottom: 5px; margin: 10px; padding-left: 5px; padding-right: 5px; background: #ffffcc; font-size: 1.4em; border-top: #aaaaaa 1px solid; font-weight: bold; border-right: #aaaaaa 1px solid; padding-top: 5px">Check out <a style="color: #008888; text-decoration: underline" title="PHP community where you learn something new every day " href="http://phpcamp.net/?utm_medium=blog_post&amp;utm_source=new_blog_at_amiworks&amp;utm_campaign=where%20MySQL%20Server%20gone">PHPCamp.net</a> a article sharing website relevant to our own PHP community</div>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/where-is-mysql-gone-away/">Where is MySQL Gone Away?</a> was first posted on November 11, 2009 at 10:21 pm.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/where-is-mysql-gone-away/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Media Manager Browse Button Disabled In Joomla</title>
		<link>http://amiworks.co.in/talk/media-manager-browse-button-disabled-in-joomla/</link>
		<comments>http://amiworks.co.in/talk/media-manager-browse-button-disabled-in-joomla/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 05:00:00 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[how too?]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[media manager]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/media-manager-browse-button-disabled-in-joomla/</guid>
		<description><![CDATA[Problem : No matter how many time you click on the media manager’s browse button nothing happens. It used to work few days back but not any more.
It is as if the the media manager buttons has been disabled.

If you were facing these problems it is most probably due to the Flash uploader not working [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong> : No matter how many time you click on the media manager’s browse button nothing happens. It used to work few days back but not any more.</p>
<p>It is as if the the media manager buttons has been disabled.</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="media_manager_problem" src="http://amiworks.co.in/talk/wp-content/uploads/2009/08/media_manager_problem.jpg" border="0" alt="media_manager_problem" width="440" height="189" /></p>
<p>If you were facing these problems it is most probably due to the Flash uploader not working properly with Flash version installed on your system.</p>
<p><strong>Solution</strong>:</p>
<p>The simplest solution to fix this issue is to go to,</p>
<p><em>Global Configuration –&gt; Systems –&gt;Media settings.</em></p>
<p>And select ‘<em>No</em>’ for ‘<em>Enable Flash Uploader</em>’ setting, and save the settings.</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="mediamanager_config" src="http://amiworks.co.in/talk/wp-content/uploads/2009/08/mediamanager_config.png" border="0" alt="mediamanager_config" width="395" height="71" /></p>
<p>That’s it, this simple. Now go back to you media manager and upload files to your heart’s content.</p>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/media-manager-browse-button-disabled-in-joomla/">Media Manager Browse Button Disabled In Joomla</a> was first posted on August 19, 2009 at 10:30 am.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/media-manager-browse-button-disabled-in-joomla/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to use SVN and Git together to get the best of both worlds in Windows</title>
		<link>http://amiworks.co.in/talk/how-to-use-svn-and-git-together-to-get-the-best-of-both-worlds-in-windows/</link>
		<comments>http://amiworks.co.in/talk/how-to-use-svn-and-git-together-to-get-the-best-of-both-worlds-in-windows/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 10:21:59 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[how too?]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[git-svn]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/?p=296</guid>
		<description><![CDATA[I have been using SVN to manage my source code for last three years, I can say I am quite happy with it, except for one problem, it was not possible to commit the code unless I was directly connected to my office network.
Then I heard about DVCS and Git. I found solution to one [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using <a href="http://subversion.tigris.org/" target="_blank">SVN</a> to manage my source code for last three years, I can say I am quite happy with it, except for one problem, it was not possible to commit the code unless I was directly connected to my office network.</p>
<p>Then I heard about DVCS and <a href="http://git-scm.com/" target="_blank">Git</a>. I found solution to one of my big problem, ability to commit code while I am not connected to office network, and share code with my teammates.</p>
<p>Their was only one small problem we didn’t wanted to loose the benefits of centralized repository, and we use Windows  OS( let’s not get into windows vs linux, i will win). So last 3-4 months I was looking for different DVCS systems with better windows support and i experimented with Mercurial (TrototoiseHg is good), but i think Git wins the race of DVCS hands down, and with popularity of GitHub I don’t see much choice here.</p>
<p>And finally I found about <a href="http://www.kernel.org/pub/software/scm/git/docs/git-svn.html" target="_blank">git-svn</a>, and I was on my way.</p>
<p>Here are the commands and steps that you can use to manage Git and SVN together.</p>
<ol>
<li>Create a working copy(or actually a git repository ) using
<pre class="akcode">git svn clone –s &lt;path to ur svn rep, eg https://akjoomgallery.googlecode.com/svn/trunk/&gt;</pre>
</li>
<li>Get the source from svn repository to your git repository using
<pre class="akcode">git svn fetch</pre>
<p>(only needs to be done first time, it is slow and time consuming process)</li>
<li>When you need to update your working copy  you use
<pre class="akcode">git svn rebase</pre>
</li>
<li>When you need to commit back to svn repository just use
<pre class="akcode">git svn dcommit</pre>
</li>
</ol>
<p>I used above commands in Git bash shell that comes with Git.</p>
<p>Also note their would be time when we have some changes in the Git repository that is not yet ready for commit, but we need to update our repository and Git won’t let you do that, without committing them (rebase will always give error) in such situation you use following set of commands</p>
<pre class="akcode">git stash

git svn rebase

git stash apply

git stash clear</pre>
<p>Update:</p>
<p>And if you don’t want to these things manually here is my favourite tool that does that using nice GUI and perfect windows integration <a href="http://code.google.com/p/tortoisegit/" target="_blank">TortoiseGit</a></p>
<p>I have written this a month back before I found TortoiseGit, so this is now just for reference, and to get me back to my blogging.</p>
<p>Have fun.</p>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/how-to-use-svn-and-git-together-to-get-the-best-of-both-worlds-in-windows/">How to use SVN and Git together to get the best of both worlds in Windows</a> was first posted on August 17, 2009 at 3:51 pm.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/how-to-use-svn-and-git-together-to-get-the-best-of-both-worlds-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla Day Pune(India)</title>
		<link>http://amiworks.co.in/talk/joomla-day-pune-india/</link>
		<comments>http://amiworks.co.in/talk/joomla-day-pune-india/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 06:18:56 +0000</pubDate>
		<dc:creator>Amit Kumar Singh</dc:creator>
				<category><![CDATA[joomla]]></category>
		<category><![CDATA[joomla day]]></category>
		<category><![CDATA[joomla day india]]></category>
		<category><![CDATA[jugpune]]></category>

		<guid isPermaLink="false">http://amiworks.co.in/talk/?p=292</guid>
		<description><![CDATA[On 25th April 2009 we hosted first ever Joomla Day in India. This was made possible by support of Parth and Ashwin who forced me to also think about Joomla Day in last years PHPCamp, where we were planning for Drupal camp.
They were later joined by Shardul, who was already pushing for Joomla day in [...]]]></description>
			<content:encoded><![CDATA[<p>On 25th April 2009 we hosted first ever <a href="http://community.joomla.org/blogs/community/811-joomla-day-pune-india-a-big-success.html">Joomla Day in India</a>. This was made possible by support of <a href="http://tekdi.net">Parth</a> and <a href="http://tekdi.net">Ashwin</a> who forced me to also think about Joomla Day in last years <a href="http://phpcamp.org">PHPCamp</a>, where we were planning for <a href="http://groups.google.com/group/drupalcampindia/browse_thread/thread/b8347ee47cac8f69/d3d97091fb12499d?lnk=gst&amp;q=phpcamp#d3d97091fb12499d">Drupal camp</a>.</p>
<p>They were later joined by <a href="http://shardul.wordpress.com/about/">Shardul</a>, who was already pushing for Joomla day in India at events forum in joomla.org. He was the person who was <a href="http://priyank-genius.blogspot.com/search/label/Coffee%20Meet">on our first coffee meet</a> to discuss how to get going so that we get official approval from OSM. He also pushed me to create and register Joomla User Group Pune, for the event.</p>
<p>We met multiple times to talk and plan how things should happen.<a href="http://amiworks.co.in/talk/wp-content/uploads/2009/04/dsc02000.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Volunteers Team on 24th evening for Joomla day" border="0" alt="Volunteers Team on 24th evening for Joomla day" src="http://amiworks.co.in/talk/wp-content/uploads/2009/04/dsc02000-thumb.jpg" width="640" height="359" /></a> </p>
<p>In middle of all this, out of nowhere, <a href="http://joomlian.com">Mangesh</a> joined us. He was instrumental in actually making <a href="http://joomladay.co.in" target="_blank">joomladay.co.in</a> website usable, as Ashwin and Parth could not give the time and attention to it. He also ended up hosting the website on his server, when we started having trouble with dream host.</p>
<p>With organizers team ready, we needed few volunteers,&#160; this is where Tara came into picture, he helped us with venue and insisted that we give I2IT a try. <a href="http://krity.net">Krity</a> worked on the content of the website and faq’s. Kinjal helped us with photographs, Rucha and Shruti helped us managing the registrations on the day of event.</p>
<p>Finally I want to thank <a href="http://www.gmitc.biz/" target="_blank">Toby Patterson</a> for coming all the way from Thailand to help us with Joomla Day.</p>
</p>
<p>Guys to stay updated about Joomla User Group Pune activity <a href="http://twitter.com/jugpune" target="_blank">follow us on Twitter</a> or Subscribe to our <a href="http://groups.google.com/group/jugpune" target="_blank">google group mailing list</a> as Joomla Day is just an start.</p>
<hr style="border-top:black solid 1px" /><a href="http://amiworks.co.in/talk/joomla-day-pune-india/">Joomla Day Pune(India)</a> was first posted on April 29, 2009 at 11:48 am.<br />©2008 "<a href="http://amiworks.co.in/talk">am i works?</a>". <br />]]></content:encoded>
			<wfw:commentRss>http://amiworks.co.in/talk/joomla-day-pune-india/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.387 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-17 12:46:29 -->
