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

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Solved Last posts not showing in index view

More
13 years 5 months ago #136928 by xillibit
This should be fixed in kunena 2.0.3 which will be released very soon

I don't provide support by PM, because this can be useful for someone else.

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

More
13 years 5 months ago - 13 years 5 months ago #136929 by thefly

xillibit wrote: This should be fixed in kunena 2.0.3 which will be released very soon


Thank you for your reply.
So the #1091 path is not useful to solve this issue :(

I will wait for new release ;)
Last edit: 13 years 5 months ago by thefly.

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

More
13 years 5 months ago #136930 by xillibit
Do you have applied the fix and the problem is still present ?

I don't provide support by PM, because this can be useful for someone else.

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

More
13 years 5 months ago - 13 years 5 months ago #136933 by thefly

xillibit wrote: Do you have applied the fix and the problem is still present ?


yes ... unfortunately there is the same problem and I made some test with various browser to be sure to have a cleaned cache.

This is the modified part following up #1091 ( github.com/mahagr/Kunena-2.0/commit/d597...a9c7ebe6b3cee37e4978 ) istructions:

protected function buildInfo() {
if ($this->_topics !== false)
return;
$this->_topics = 0;
$this->_posts = 0;
$this->_lastid = $this->id;
$categories = $this->getChannels();
$categories += KunenaForumCategoryHelper::getChildren($this->id);
foreach ($categories as $category) {
$category->buildInfo();
$lastCategory = $category->getLastCategory();
$this->_topics += max($category->numTopics, 0);
$this->_posts += max($category->numPosts, 0);
if ($lastCategory->last_post_time && KunenaForumCategoryHelper::get($this->_lastid)->last_post_time < $lastCategory->last_post_time)
$this->_lastid = $lastCategory->id;
}
}
Last edit: 13 years 5 months ago by thefly.
The following user(s) said Thank You: chessfarrell

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

More
13 years 5 months ago #136971 by 810
Kunena 2.0.3 is out now, please install the new version. And try again. It should fixed the issue.


regards 810
The following user(s) said Thank You: chessfarrell

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

More
13 years 5 months ago - 13 years 5 months ago #136972 by chessfarrell
Thanks for the info. I've just updated Kunena and it seems they applied the fix mentioned earlier, which doesn't solve all the problems (even though it's already better than it used to be). I'll show you:

(1. Index view: category showing a 9-month old post)


(2. Category view)


(3. No topics and replies)


It seems the index view (#1) should display the post in green (#2), not the one in red. So the issue seems to endure, which attachment #3 seems to confirm: another category that was affected by the bug displays no topic and no reply while it's full of them.

If anyone experiencing the same problem can reproduce it with a new category so that we can inform the developers, don't hesitate to post the instructions here.
Last edit: 13 years 5 months ago by chessfarrell. Reason: spelling

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

Time to create page: 0.260 seconds