
<?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://blog.manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/</link>
	<description>&#34;Manchumahara&#34; ...... The virtual crazy vagabond and  a emotional stupid</description>
	<lastBuildDate>Sun, 25 Jul 2010 00:23:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: N.Richard</title>
		<link>http://blog.manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9339</link>
		<dc:creator>N.Richard</dc:creator>
		<pubDate>Sat, 27 Mar 2010 19:34:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.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 components\com_easyfaq\model\Faq_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 components\com_easyfaq\model\Faq_JA_Model.php, adding an SQL &#8216;AS&#8217; when query uses aliases (e.g. &#8216;FROM #__easyfaq f&#8217; becomes &#8216;FROM #__easyfaq AS f&#8217;).</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.<br />
Check <a target="_blank" rel="nofollow external" 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://blog.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 17:53:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.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;sql&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>#<br />
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).<br />
Can you check what SQL queries look like on you site? Any clue on how to investigate this?</p>
<pre class="brush: sql;">
&lt;code&gt;SELECT *
  FROM jos_easyfaq_categories
  WHERE id = '3'
#
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='easyfaq_categories'
#
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, '|', 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
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manchumahara(Sabuj Kundu)</title>
		<link>http://blog.manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9337</link>
		<dc:creator>Manchumahara(Sabuj Kundu)</dc:creator>
		<pubDate>Sat, 27 Mar 2010 16:48:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.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?
&lt;/blockquote&gt;
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[<blockquote cite="comment-9334">
<p><strong><a target="_blank" rel="nofollow external" href="#comment-9334" rel="nofollow">N.Richard</a></strong>: Have you had the time to check this?</p>
</blockquote>
<p>Sorry I forgot it <img src='http://blog.manchumahara.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> . I just checked it, didn&#8217;t find any problem with faq entries translation. Please check you published those.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manchumahara(Sabuj Kundu)</title>
		<link>http://blog.manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9336</link>
		<dc:creator>Manchumahara(Sabuj Kundu)</dc:creator>
		<pubDate>Sat, 27 Mar 2010 16:44:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.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?
&lt;/blockquote&gt;
Hi Richard, I just checked and didn&#039;t get any problem with category translation. Can you pls check again.</description>
		<content:encoded><![CDATA[<blockquote cite="comment-9334">
<p><strong><a target="_blank" rel="nofollow external" href="#comment-9334" rel="nofollow">N.Richard</a></strong>: Have you had the time to check this?</p>
</blockquote>
<p>Hi Richard, I just checked and didn&#8217;t get any problem with category translation. Can you pls check again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: N.Richard</title>
		<link>http://blog.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 08:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.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 Kundu)</title>
		<link>http://blog.manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9269</link>
		<dc:creator>Manchumahara(Sabuj Kundu)</dc:creator>
		<pubDate>Tue, 02 Mar 2010 05:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.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… But I’m not SQL literate enough to diagnose the problem in the EasyFAQ query, and how to correct it! Any help greatly appreciated!
&lt;/blockquote&gt;
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[<blockquote cite="comment-9260">
<p><strong><a target="_blank" rel="nofollow external" 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… But I’m not SQL literate enough to diagnose the problem in the EasyFAQ query, and how to correct it! Any help greatly appreciated!</p>
</blockquote>
<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://blog.manchumahara.com/2009/11/18/easyfaq2-content-element-for-joomfish2/comment-page-1/#comment-9260</link>
		<dc:creator>N.Richard</dc:creator>
		<pubDate>Mon, 01 Mar 2010 22:24:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.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 target="_blank" rel="nofollow external" href="http://www.joomfish.net/en/documentation/developer-docs/64-compatible-query-construction" rel="nofollow">see here</a>).<br />
By enabling Joomla System Debug, you can see that no Joomfish query is made after the EasyFAQ query retrieving the FAQ&#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!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
