<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Free Android CakePHP GMaps Articles</title>
	<atom:link href="http://www.balistupa.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.balistupa.com/blog</link>
	<description>Bali Stupa Blog</description>
	<lastBuildDate>Fri, 03 Feb 2012 17:22:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on How to install cakephp on hostgator shared hosting by laser quest</title>
		<link>http://www.balistupa.com/blog/2010/11/how-to-install-cakephp-on-hostgator-shared-hosting/#comment-1094</link>
		<dc:creator>laser quest</dc:creator>
		<pubDate>Fri, 03 Feb 2012 17:22:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=134#comment-1094</guid>
		<description>Your steps worked great for me on hostgator. The only thing I had to change (maybe I have a newer version of cakePHP) I didn&#039;t need to do this step 

if (!defined(&#039;CAKE_CORE_INCLUDE_PATH&#039;)) {
define(&#039;CAKE_CORE_INCLUDE_PATH&#039;, DS.&#039;home&#039;.DS.&#039;myhost&#039;);
} 

I think new builds of cakePHP don&#039;t have a /cake directory</description>
		<content:encoded><![CDATA[<p>Your steps worked great for me on hostgator. The only thing I had to change (maybe I have a newer version of cakePHP) I didn&#8217;t need to do this step </p>
<p>if (!defined(&#8216;CAKE_CORE_INCLUDE_PATH&#8217;)) {<br />
define(&#8216;CAKE_CORE_INCLUDE_PATH&#8217;, DS.&#8217;home&#8217;.DS.&#8217;myhost&#8217;);<br />
} </p>
<p>I think new builds of cakePHP don&#8217;t have a /cake directory</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing data or parameter to another Activity Android by Sly Senechal</title>
		<link>http://www.balistupa.com/blog/2009/08/passing-data-or-parameter-to-another-activity-android/#comment-1091</link>
		<dc:creator>Sly Senechal</dc:creator>
		<pubDate>Mon, 02 Jan 2012 21:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=83#comment-1091</guid>
		<description>Oh yeah! many many thanks for that sharing.</description>
		<content:encoded><![CDATA[<p>Oh yeah! many many thanks for that sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing data or parameter to another Activity Android by Иван Бишевац</title>
		<link>http://www.balistupa.com/blog/2009/08/passing-data-or-parameter-to-another-activity-android/#comment-1089</link>
		<dc:creator>Иван Бишевац</dc:creator>
		<pubDate>Thu, 29 Dec 2011 17:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=83#comment-1089</guid>
		<description>Short and clear. I&#039;ve solved my problem with this code.</description>
		<content:encoded><![CDATA[<p>Short and clear. I&#8217;ve solved my problem with this code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Forcing inner join on belongTo and hasOne by Wallace</title>
		<link>http://www.balistupa.com/blog/2009/07/forcing-inner-join-on-belongto-and-hasone/#comment-1088</link>
		<dc:creator>Wallace</dc:creator>
		<pubDate>Tue, 27 Dec 2011 11:20:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=81#comment-1088</guid>
		<description>How I force Inner Join in HABTM?!</description>
		<content:encoded><![CDATA[<p>How I force Inner Join in HABTM?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing data or parameter to another Activity Android by Deleep Rao Pavana</title>
		<link>http://www.balistupa.com/blog/2009/08/passing-data-or-parameter-to-another-activity-android/#comment-1087</link>
		<dc:creator>Deleep Rao Pavana</dc:creator>
		<pubDate>Wed, 21 Dec 2011 12:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=83#comment-1087</guid>
		<description>Informative article..
Thanks for sharing.</description>
		<content:encoded><![CDATA[<p>Informative article..<br />
Thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why does findViewById return null? by lonewolf</title>
		<link>http://www.balistupa.com/blog/2009/07/why-does-findviewbyid-return-null/#comment-1084</link>
		<dc:creator>lonewolf</dc:creator>
		<pubDate>Tue, 15 Nov 2011 20:59:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=69#comment-1084</guid>
		<description>Thank you for the post, it got me on the right track.

I used the following in main.xml:
android:id=”@+id/deviceidtext”

and got the same null pointer. 


After changing the code to:
android:id=”@+id/devicetext”

The program was able to retrieve the correct view.

It seems that the parser looks into the naming string aswell for &quot;id&quot; and cannot resolve the situation</description>
		<content:encoded><![CDATA[<p>Thank you for the post, it got me on the right track.</p>
<p>I used the following in main.xml:<br />
android:id=”@+id/deviceidtext”</p>
<p>and got the same null pointer. </p>
<p>After changing the code to:<br />
android:id=”@+id/devicetext”</p>
<p>The program was able to retrieve the correct view.</p>
<p>It seems that the parser looks into the naming string aswell for &#8220;id&#8221; and cannot resolve the situation</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing data or parameter to another Activity Android by Ouie</title>
		<link>http://www.balistupa.com/blog/2009/08/passing-data-or-parameter-to-another-activity-android/#comment-1083</link>
		<dc:creator>Ouie</dc:creator>
		<pubDate>Thu, 03 Nov 2011 14:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=83#comment-1083</guid>
		<description>Many thanks. This helped me a lot!</description>
		<content:encoded><![CDATA[<p>Many thanks. This helped me a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing data or parameter to another Activity Android by Hartmut</title>
		<link>http://www.balistupa.com/blog/2009/08/passing-data-or-parameter-to-another-activity-android/#comment-1081</link>
		<dc:creator>Hartmut</dc:creator>
		<pubDate>Thu, 27 Oct 2011 14:58:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=83#comment-1081</guid>
		<description>Great! Thanks a lot for the clear and straightforward explanation ;-)</description>
		<content:encoded><![CDATA[<p>Great! Thanks a lot for the clear and straightforward explanation ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why does findViewById return null? by dexterminio</title>
		<link>http://www.balistupa.com/blog/2009/07/why-does-findviewbyid-return-null/#comment-1080</link>
		<dc:creator>dexterminio</dc:creator>
		<pubDate>Sat, 15 Oct 2011 17:50:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=69#comment-1080</guid>
		<description>When you&#039;re code is ok, and the null reference is returned, you need to clean your project.
Note: To clean the project means to clear out the cache (like the web browser when a page is loaded), so the new changes will be there.
In the menu (eclipse menu) Project-&gt;Clean...
When ask about about the project to Clean, you select &quot;Clean all projects&quot; or &quot;Clean projects selected below&quot;.
Press the ok button and is done, the project will run ok.</description>
		<content:encoded><![CDATA[<p>When you&#8217;re code is ok, and the null reference is returned, you need to clean your project.<br />
Note: To clean the project means to clear out the cache (like the web browser when a page is loaded), so the new changes will be there.<br />
In the menu (eclipse menu) Project-&gt;Clean&#8230;<br />
When ask about about the project to Clean, you select &#8220;Clean all projects&#8221; or &#8220;Clean projects selected below&#8221;.<br />
Press the ok button and is done, the project will run ok.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing data or parameter to another Activity Android by hossein</title>
		<link>http://www.balistupa.com/blog/2009/08/passing-data-or-parameter-to-another-activity-android/#comment-1079</link>
		<dc:creator>hossein</dc:creator>
		<pubDate>Sun, 09 Oct 2011 09:50:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.balistupa.com/blog/?p=83#comment-1079</guid>
		<description>Thanks a lot..... :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot&#8230;.. :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

