<?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 SpinOneSolutions</title>
	<atom:link href="http://www.spinonesolutions.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.spinonesolutions.com</link>
	<description>I waste my time so that you don't have to...</description>
	<lastBuildDate>Mon, 01 Feb 2010 15:36:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Custom Magento Grid with Ambiguous Column on Filter by Will Wright</title>
		<link>http://www.spinonesolutions.com/2010/01/custom-magento-grid-with-ambiguous-column-on-filter/comment-page-1/#comment-4344</link>
		<dc:creator>Will Wright</dc:creator>
		<pubDate>Mon, 01 Feb 2010 15:36:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=486#comment-4344</guid>
		<description>My guess is that it&#039;s the left join on the sub-query that&#039;s causing this error:
LEFT OUTER JOIN (
               SELECT user_id, count(*) AS properties_count
               FROM properties
               GROUP BY user_id
       ) AS properties_count ON properties_count.user_id = users.user_id

Does the query work without this join?</description>
		<content:encoded><![CDATA[<p>My guess is that it&#8217;s the left join on the sub-query that&#8217;s causing this error:<br />
LEFT OUTER JOIN (<br />
               SELECT user_id, count(*) AS properties_count<br />
               FROM properties<br />
               GROUP BY user_id<br />
       ) AS properties_count ON properties_count.user_id = users.user_id</p>
<p>Does the query work without this join?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Magento Grid with Ambiguous Column on Filter by nikolay</title>
		<link>http://www.spinonesolutions.com/2010/01/custom-magento-grid-with-ambiguous-column-on-filter/comment-page-1/#comment-4304</link>
		<dc:creator>nikolay</dc:creator>
		<pubDate>Fri, 29 Jan 2010 17:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=486#comment-4304</guid>
		<description>This code:
$query = &quot;
	SELECT
		users.user_id, users.email, 
		users.first_name, users.last_name, 
		users.last_login, users.created, users.status,
		countries.name AS country, provinces.name AS province, cities.name AS city, districts.name AS district,
		properties_count.properties_count
	FROM users
	LEFT OUTER JOIN countries ON countries.country_id = users.country_id
	LEFT OUTER JOIN provinces ON provinces.province_id = users.province_id
	LEFT OUTER JOIN cities ON cities.city_id = users.city_id
	LEFT OUTER JOIN districts ON districts.district_id = users.district_id
	LEFT OUTER JOIN (
		SELECT user_id, count(*) AS properties_count
		FROM properties
		GROUP BY user_id
	) AS properties_count ON properties_count.user_id = users.user_id
&quot;;
id giving me the same error! Can you help me?</description>
		<content:encoded><![CDATA[<p>This code:<br />
$query = &#8221;<br />
	SELECT<br />
		users.user_id, users.email,<br />
		users.first_name, users.last_name,<br />
		users.last_login, users.created, users.status,<br />
		countries.name AS country, provinces.name AS province, cities.name AS city, districts.name AS district,<br />
		properties_count.properties_count<br />
	FROM users<br />
	LEFT OUTER JOIN countries ON countries.country_id = users.country_id<br />
	LEFT OUTER JOIN provinces ON provinces.province_id = users.province_id<br />
	LEFT OUTER JOIN cities ON cities.city_id = users.city_id<br />
	LEFT OUTER JOIN districts ON districts.district_id = users.district_id<br />
	LEFT OUTER JOIN (<br />
		SELECT user_id, count(*) AS properties_count<br />
		FROM properties<br />
		GROUP BY user_id<br />
	) AS properties_count ON properties_count.user_id = users.user_id<br />
&#8220;;<br />
id giving me the same error! Can you help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento &#8211; Part II : Models by Deng</title>
		<link>http://www.spinonesolutions.com/2009/10/magento-part-ii-models/comment-page-1/#comment-4301</link>
		<dc:creator>Deng</dc:creator>
		<pubDate>Fri, 29 Jan 2010 07:59:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=362#comment-4301</guid>
		<description>A very good post helping understanding the naming convention of magento. Thanks</description>
		<content:encoded><![CDATA[<p>A very good post helping understanding the naming convention of magento. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Magento Grid with Ambiguous Column on Filter by Will Wright</title>
		<link>http://www.spinonesolutions.com/2010/01/custom-magento-grid-with-ambiguous-column-on-filter/comment-page-1/#comment-4199</link>
		<dc:creator>Will Wright</dc:creator>
		<pubDate>Tue, 19 Jan 2010 15:22:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=486#comment-4199</guid>
		<description>Thanks for the update!</description>
		<content:encoded><![CDATA[<p>Thanks for the update!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento &#8211; Part V: Data Layer by Ruben Marques</title>
		<link>http://www.spinonesolutions.com/2009/10/magento-part-v-data-layer/comment-page-1/#comment-4195</link>
		<dc:creator>Ruben Marques</dc:creator>
		<pubDate>Tue, 19 Jan 2010 12:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=439#comment-4195</guid>
		<description>Very useful code...
Go on with the good work.

Cheers!</description>
		<content:encoded><![CDATA[<p>Very useful code&#8230;<br />
Go on with the good work.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Magento Grid with Ambiguous Column on Filter by Ruben Marques</title>
		<link>http://www.spinonesolutions.com/2010/01/custom-magento-grid-with-ambiguous-column-on-filter/comment-page-1/#comment-4194</link>
		<dc:creator>Ruben Marques</dc:creator>
		<pubDate>Tue, 19 Jan 2010 11:39:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=486#comment-4194</guid>
		<description>Hi Will, it worked for me but with a little change.
Instead of 

$collection = Mage::getResourceModel(&#039;spinonesolutions_storelocator/retailer_collection&#039;);  

I used 

$collection = Mage::getModel(&#039;spinonesolutions_storelocator/retailer_collection&#039;)-&gt;getCollection();

If this change isn&#039;t done, a warning will appear saying that getSelect() is not defined.</description>
		<content:encoded><![CDATA[<p>Hi Will, it worked for me but with a little change.<br />
Instead of </p>
<p>$collection = Mage::getResourceModel(&#8217;spinonesolutions_storelocator/retailer_collection&#8217;);  </p>
<p>I used </p>
<p>$collection = Mage::getModel(&#8217;spinonesolutions_storelocator/retailer_collection&#8217;)-&gt;getCollection();</p>
<p>If this change isn&#8217;t done, a warning will appear saying that getSelect() is not defined.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento &#8211; Enable Paygate Refunds by Will Wright</title>
		<link>http://www.spinonesolutions.com/2009/10/magento-enable-paygate-refunds/comment-page-1/#comment-4187</link>
		<dc:creator>Will Wright</dc:creator>
		<pubDate>Mon, 18 Jan 2010 16:06:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=435#comment-4187</guid>
		<description>That snippet goes in the local &quot;etc&quot; folder.  In my example it&#039;s /app/code/local/SpinoneSolutions/etc/ .

That snippet is an addition to whatever else you may have in your config.xml.  You&#039;ll need to copy and paste the &quot;paygate&quot; block into your &quot;models&quot; block.

Note that the actual class path that you wrap with &quot;authorizenet&quot; could be different based on the namespaces that you choose.</description>
		<content:encoded><![CDATA[<p>That snippet goes in the local &#8220;etc&#8221; folder.  In my example it&#8217;s /app/code/local/SpinoneSolutions/etc/ .</p>
<p>That snippet is an addition to whatever else you may have in your config.xml.  You&#8217;ll need to copy and paste the &#8220;paygate&#8221; block into your &#8220;models&#8221; block.</p>
<p>Note that the actual class path that you wrap with &#8220;authorizenet&#8221; could be different based on the namespaces that you choose.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento &#8211; Enable Paygate Refunds by Jeremiah Lewis</title>
		<link>http://www.spinonesolutions.com/2009/10/magento-enable-paygate-refunds/comment-page-1/#comment-4154</link>
		<dc:creator>Jeremiah Lewis</dc:creator>
		<pubDate>Fri, 15 Jan 2010 15:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=435#comment-4154</guid>
		<description>For the config.xml file, do we just need that bit of code in a config.xml file in the local directory, or is that code snippet added to (or replacing a section) of the whole original config.xml file?

If the latter, which section is it replacing?</description>
		<content:encoded><![CDATA[<p>For the config.xml file, do we just need that bit of code in a config.xml file in the local directory, or is that code snippet added to (or replacing a section) of the whole original config.xml file?</p>
<p>If the latter, which section is it replacing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento &#8211; Part I : Custom Module by phpfarmer</title>
		<link>http://www.spinonesolutions.com/2009/09/magento-custom-module-part-i/comment-page-1/#comment-3828</link>
		<dc:creator>phpfarmer</dc:creator>
		<pubDate>Tue, 22 Dec 2009 08:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=336#comment-3828</guid>
		<description>I have copied your code. I can see it from admin. Now how can I load this module in site homepage? Please help@!</description>
		<content:encoded><![CDATA[<p>I have copied your code. I can see it from admin. Now how can I load this module in site homepage? Please help@!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento &#8211; Enable Paygate Refunds by Haroon</title>
		<link>http://www.spinonesolutions.com/2009/10/magento-enable-paygate-refunds/comment-page-1/#comment-3776</link>
		<dc:creator>Haroon</dc:creator>
		<pubDate>Thu, 17 Dec 2009 18:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.spinonesolutions.com/?p=435#comment-3776</guid>
		<description>Hello,
      I want to use the same solution for Paypal  what attributes do i ahve to change in order to get that working.

Regards
Haroon</description>
		<content:encoded><![CDATA[<p>Hello,<br />
      I want to use the same solution for Paypal  what attributes do i ahve to change in order to get that working.</p>
<p>Regards<br />
Haroon</p>
]]></content:encoded>
	</item>
</channel>
</rss>
