<?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 on: Easyfaq2 content element for joomfish2</title> <atom:link href="http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/feed/" rel="self" type="application/rss+xml" /><link>http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/</link> <description>&#34;Manchumahara&#34; ...... The virtual, crazy, vagabond and  an emotional stupid!</description> <lastBuildDate>Sat, 04 Feb 2012 18:44:27 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: Ewan</title><link>http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-15048</link> <dc:creator>Ewan</dc:creator> <pubDate>Tue, 24 May 2011 15:15:01 +0000</pubDate> <guid isPermaLink="false">http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/#comment-15048</guid> <description>Hi. Did you ever get around to writing a tutorial for creating a content element for joomfish?  Your feedback would be appreciated.</description> <content:encoded><![CDATA[<p>Hi. Did you ever get around to writing a tutorial for creating a content element for joomfish?  Your feedback would be appreciated.</p> ]]></content:encoded> </item> <item><title>By: N.Richard</title><link>http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9339</link> <dc:creator>N.Richard</dc:creator> <pubDate>Sun, 28 Mar 2010 01:34:24 +0000</pubDate> <guid isPermaLink="false">http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/#comment-9339</guid> <description>I found the solution... As I thought, EasyFAQ SQL queries are not compatible with Joomfish. I had to change the queries in componentscom_easyfaqmodelFaq_JA_Model.php, adding an SQL &#039;AS&#039; when query uses aliases (e.g. &#039;FROM #__easyfaq f&#039; becomes &#039;FROM #__easyfaq AS f&#039;). There certainly are other non-Joomfish-compatible syntaxes in this file and in other files. But for what I needed of EasyFAQ this is enough. Check &lt;a href=&quot;http://www.joomfish.net/en/documentation/developer-docs/64-compatible-query-construction&quot; rel=&quot;nofollow&quot;&gt;Joomfish Documentation&lt;/a&gt; if ever you still are in trouble with some EasyFAQ translations. </description> <content:encoded><![CDATA[<p>I found the solution&#8230; As I thought, EasyFAQ SQL queries are not compatible with Joomfish. I had to change the queries in componentscom_easyfaqmodelFaq_JA_Model.php, adding an SQL &#039;AS&#039; when query uses aliases (e.g. &#039;FROM #__easyfaq f&#039; becomes &#039;FROM #__easyfaq AS f&#039;).</p><p>There certainly are other non-Joomfish-compatible syntaxes in this file and in other files. But for what I needed of EasyFAQ this is enough.</p><p>Check <a href="http://www.joomfish.net/en/documentation/developer-docs/64-compatible-query-construction" rel="nofollow">Joomfish Documentation</a> if ever you still are in trouble with some EasyFAQ translations.</p> ]]></content:encoded> </item> <item><title>By: N.Richard</title><link>http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9338</link> <dc:creator>N.Richard</dc:creator> <pubDate>Sat, 27 Mar 2010 23:53:06 +0000</pubDate> <guid isPermaLink="false">http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/#comment-9338</guid> <description># Here is what I get when I enable Joomla debug (on page displaying a FAQ Category and its entries). As you can see, there is a Joomfish query after EasyFAQ query on category (jos_easyfaq_categories table), but there is no Joomfish query on entries after EasyFAQ query (jos_easyfaq table). Can you check what SQL queries look like on you site? Any clue on how to investigate this? [code language=&quot;&quot;sql&quot;&quot;] &lt;code&gt;SELECT * FROM jos_easyfaq_categories WHERE id = &#039;3&#039; # SELECT jf_content.reference_field, jf_content.value, jf_content.reference_id, jf_content.original_value FROM jos_jf_content AS jf_content WHERE jf_content.language_id=1 AND jf_content.published=1 AND jf_content.reference_id IN(3) AND jf_content.reference_table=&#039;easyfaq_categories&#039; # SELECT c.* FROM jos_easyfaq_categories c WHERE c.state = 1 AND c.parent_id = 3 ORDER BY c.parent_id, c.ordering # SELECT c.* FROM jos_easyfaq_categories c WHERE c.state = 1 ORDER BY c.parent_id, c.ordering # SELECT f.*, c.name AS category, u.name AS author, GROUP_CONCAT(DISTINCT CONCAT(t.id, &#039;&#124;&#039;, t.name) ORDER BY t.name) AS tags, AVG(r.rating) AS rating FROM jos_easyfaq f LEFT JOIN jos_easyfaq_categories c ON f.category_id = c.id LEFT JOIN jos_users u ON f.created_by = u.id LEFT JOIN jos_easyfaq_link_ft ft ON f.id = ft.faq_id LEFT JOIN jos_easyfaq_tags t ON ft.tag_id = t.id AND t.state = 1 LEFT JOIN jos_easyfaq_rating r ON f.id = r.faq_id WHERE category_id = 3 AND c.state = 1 AND f.state = 1 GROUP BY f.id ORDER BY c.name, f.ordering # SELECT id, title, module, position, content, showtitle, control, params FROM jos_modules AS m [/code] </description> <content:encoded><![CDATA[<p>#</p><p>Here is what I get when I enable Joomla debug (on page displaying a FAQ Category and its entries). As you can see, there is a Joomfish query after EasyFAQ query on category (jos_easyfaq_categories table), but there is no Joomfish query on entries after EasyFAQ query (jos_easyfaq table).</p><p>Can you check what SQL queries look like on you site? Any clue on how to investigate this?</p><p>&amp;lt;code&amp;gt;SELECT *</p><p> FROM jos_easyfaq_categories</p><p> WHERE id = &#039;3&#039;</p><p>#</p><p>SELECT jf_content.reference_field, jf_content.value, jf_content.reference_id, jf_content.original_value</p><p> FROM jos_jf_content AS jf_content</p><p> WHERE jf_content.language_id=1</p><p> AND jf_content.published=1</p><p> AND jf_content.reference_id IN(3)</p><p> AND jf_content.reference_table=&#039;easyfaq_categories&#039;</p><p>#</p><p>SELECT c.*</p><p> FROM jos_easyfaq_categories c</p><p> WHERE c.state = 1</p><p> AND c.parent_id = 3</p><p> ORDER BY c.parent_id, c.ordering</p><p>#</p><p>SELECT c.*</p><p> FROM jos_easyfaq_categories c</p><p> WHERE c.state = 1</p><p> ORDER BY c.parent_id, c.ordering</p><p>#</p><p>SELECT f.*, c.name AS category, u.name AS author, GROUP_CONCAT(DISTINCT CONCAT(t.id, &#039;|&#039;, t.name)</p><p> ORDER BY t.name) AS tags, AVG(r.rating) AS rating</p><p> FROM jos_easyfaq f</p><p> LEFT JOIN jos_easyfaq_categories c</p><p> ON f.category_id = c.id</p><p> LEFT JOIN jos_users u</p><p> ON f.created_by = u.id</p><p> LEFT JOIN jos_easyfaq_link_ft ft</p><p> ON f.id = ft.faq_id</p><p> LEFT JOIN jos_easyfaq_tags t</p><p> ON ft.tag_id = t.id</p><p> AND t.state = 1</p><p> LEFT JOIN jos_easyfaq_rating r</p><p> ON f.id = r.faq_id</p><p> WHERE category_id = 3</p><p> AND c.state = 1</p><p> AND f.state = 1</p><p> GROUP BY f.id</p><p> ORDER BY c.name, f.ordering</p><p>#</p><p>SELECT id, title, module, position, content, showtitle, control, params</p><p> FROM jos_modules AS m</p> ]]></content:encoded> </item> <item><title>By: Manchumahara(Sabuj K</title><link>http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9337</link> <dc:creator>Manchumahara(Sabuj K</dc:creator> <pubDate>Sat, 27 Mar 2010 22:48:35 +0000</pubDate> <guid isPermaLink="false">http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/#comment-9337</guid> <description>&lt;blockquote cite=&quot;comment-9334&quot;&gt; &lt;strong&gt;&lt;a href=&quot;#comment-9334&quot; rel=&quot;nofollow&quot;&gt;N.Richard&lt;/a&gt;&lt;/strong&gt;: Have you had the time to check this? Sorry I forgot it :(. I just checked it, didn&#039;t find any problem with faq entries translation. Please check you published those. </description> <content:encoded><![CDATA[<p>&lt;blockquote cite=&quot;comment-9334&quot;&gt;</p><p><strong><a href="#comment-9334" rel="nofollow">N.Richard</a></strong>: Have you had the time to check this?</p><p>Sorry I forgot it <img src='http://manchumahara.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> . I just checked it, didn&#039;t find any problem with faq entries translation. Please check you published those.</p> ]]></content:encoded> </item> <item><title>By: Manchumahara(Sabuj K</title><link>http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9336</link> <dc:creator>Manchumahara(Sabuj K</dc:creator> <pubDate>Sat, 27 Mar 2010 22:44:45 +0000</pubDate> <guid isPermaLink="false">http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/#comment-9336</guid> <description>&lt;blockquote cite=&quot;comment-9334&quot;&gt; &lt;strong&gt;&lt;a href=&quot;#comment-9334&quot; rel=&quot;nofollow&quot;&gt;N.Richard&lt;/a&gt;&lt;/strong&gt;: Have you had the time to check this? Hi Richard, I just checked and didn&#039;t get any problem with category translation. Can you pls check again. </description> <content:encoded><![CDATA[<p>&lt;blockquote cite=&quot;comment-9334&quot;&gt;</p><p><strong><a href="#comment-9334" rel="nofollow">N.Richard</a></strong>: Have you had the time to check this?</p><p>Hi Richard, I just checked and didn&#039;t get any problem with category translation. Can you pls check again.</p> ]]></content:encoded> </item> <item><title>By: N.Richard</title><link>http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9334</link> <dc:creator>N.Richard</dc:creator> <pubDate>Sat, 27 Mar 2010 14:06:41 +0000</pubDate> <guid isPermaLink="false">http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/#comment-9334</guid> <description>Have you had the time to check this? </description> <content:encoded><![CDATA[<p>Have you had the time to check this?</p> ]]></content:encoded> </item> <item><title>By: Manchumahara(Sabuj K</title><link>http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9269</link> <dc:creator>Manchumahara(Sabuj K</dc:creator> <pubDate>Tue, 02 Mar 2010 11:37:07 +0000</pubDate> <guid isPermaLink="false">http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/#comment-9269</guid> <description>&lt;blockquote cite=&quot;comment-9260&quot;&gt; &lt;strong&gt;&lt;a href=&quot;#comment-9260&quot; rel=&quot;nofollow&quot;&gt;N.Richard&lt;/a&gt;&lt;/strong&gt;: Well it does not seem to work for me. Categories are correctly translated, but FAQ entries themselves are not&#8230; But I&#8217;m not SQL literate enough to diagnose the problem in the EasyFAQ query, and how to correct it! Any help greatly appreciated! Please back to this blog post after one week and hope I will get time to check this within this time. </description> <content:encoded><![CDATA[<p>&lt;blockquote cite=&quot;comment-9260&quot;&gt;</p><p><strong><a href="#comment-9260" rel="nofollow">N.Richard</a></strong>: Well it does not seem to work for me. Categories are correctly translated, but FAQ entries themselves are not&hellip; But I&rsquo;m not SQL literate enough to diagnose the problem in the EasyFAQ query, and how to correct it! Any help greatly appreciated!</p><p>Please back to this blog post after one week and hope I will get time to check this within this time.</p> ]]></content:encoded> </item> <item><title>By: N.Richard</title><link>http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9260</link> <dc:creator>N.Richard</dc:creator> <pubDate>Tue, 02 Mar 2010 04:24:29 +0000</pubDate> <guid isPermaLink="false">http://manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/#comment-9260</guid> <description>Well it does not seem to work for me. Categories are correctly translated, but FAQ entries themselves are not. I think this is rather due to the SQL query being done by EasyFAQ, which does not meet the Joomfish requirements (&lt;a href=&quot;http://www.joomfish.net/en/documentation/developer-docs/64-compatible-query-construction&quot; rel=&quot;nofollow&quot;&gt;see here&lt;/a&gt;). By enabling Joomla System Debug, you can see that no Joomfish query is made after the EasyFAQ query retrieving the FAQ... But I&#039;m not SQL literate enough to diagnose the problem in the EasyFAQ query, and how to correct it! Any help greatly appreciated! </description> <content:encoded><![CDATA[<p>Well it does not seem to work for me. Categories are correctly translated, but FAQ entries themselves are not. I think this is rather due to the SQL query being done by EasyFAQ, which does not meet the Joomfish requirements (<a href="http://www.joomfish.net/en/documentation/developer-docs/64-compatible-query-construction" rel="nofollow">see here</a>).</p><p>By enabling Joomla System Debug, you can see that no Joomfish query is made after the EasyFAQ query retrieving the FAQ&#8230; But I&#039;m not SQL literate enough to diagnose the problem in the EasyFAQ query, and how to correct it! Any help greatly appreciated!</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 5/17 queries in 0.052 seconds using disk: basic
Object Caching 425/430 objects using disk: basic

Served from: manchumahara.com @ 2012-02-05 19:41:34 -->
