Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0

This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.

The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 1.7, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.

Question [hack] Related posts for 1.6

More
15 years 2 months ago #85882 by ChaosHead
First run
Code:
ALTER TABLE jos_kunena_messages ADD FULLTEXT(subject)
and than
Code:
ALTER TABLE jos_kunena_messages_text ADD FULLTEXT(message)

Please Log in or Create an account to join the conversation.

More
15 years 2 months ago - 15 years 2 months ago #85883 by ariaji86
Code:
#1214 - The used table type doesn't support FULLTEXT indexes
i got this error
#1214 - The used table type doesn't support FULLTEXT indexes
Code:
ALTER TABLE jos_kunena_messages_text ADD FULLTEXT(message)
#1214 - The used table type doesn't support FULLTEXT indexes

i`m using kunena 1.6.3 & joomla 1.6

Thanks for all the hard works
Last edit: 15 years 2 months ago by ariaji86.

Please Log in or Create an account to join the conversation.

More
15 years 2 months ago - 15 years 2 months ago #85899 by ChaosHead
I have replaced
Code:
$query= "SELECT id, subject, name, time as zaman, catid, userid, MATCH(t1.subject) AGAINST ('$this->kunena_topic_title') AS oran FROM #__kunena_messages as t1 "; $query.= "WHERE MATCH(t1.subject) AGAINST('$this->kunena_topic_title') >= $percent AND id<> $this->thread ";
with
Code:
$query= "SELECT id, thread, subject, name, time as zaman, catid, userid, hold, MATCH(t1.subject) AGAINST ('$this->kunena_topic_title') AS oran FROM #__kunena_messages as t1 "; $query.= "WHERE MATCH(t1.subject) AGAINST('$this->kunena_topic_title') >= $percent AND thread<> $this->thread AND hold= 0 ";
Now posts from a viewed topic and deleted posts won't be displayed among the similar.
Last edit: 15 years 2 months ago by ChaosHead.

Please Log in or Create an account to join the conversation.

More
14 years 6 months ago #109419 by sunnyjey
This is one of the most important features lacking in the Kunena. The related posts increase stay of visitors as well as increases forum activity.

Do our Kunena Team has any plans to implement this features in near next releases?

Is this hack is still working on latest Kunena, as this post is 8 month old?

Please Log in or Create an account to join the conversation.

More
14 years 6 months ago #109424 by ChaosHead
Still working in Kunena 1.7

Please Log in or Create an account to join the conversation.

  • C0n
  • C0n's Avatar
  • Offline
  • Premium Member
  • Premium Member
  • Only the strongest will survive
More
14 years 6 months ago #110160 by C0n
I'm just curious if anyone has a demo of this :D ?

Please Log in or Create an account to join the conversation.

Time to create page: 0.287 seconds