Kunena 6.2.6 released

The Kunena team has announce the arrival of Kunena 6.2.6 [K 6.2.6] which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x. This version addresses most of the issues that were discovered in K 6.1 / K 6.2 and issues discovered during the last development stages of K 6.2

Please Read This First:


Please read the guides posted as sticky topics in this category. For a quicker response, please give as much information to help us understand the problem (see How To Ask Questions The Smart Way and What information should I include when I ask for help (including how to post my configuration report)? ).

This category is only for reporting defects with K 2.0 Please read, before you post, Before you post your question, read this first .

Do not use this category:
  • if this website ( www.kunena.org ) works but works differently to how you expected
  • for requests to add or remove the standard features of Kunena;
  • for questions commonly asked or "how to" in nature (see the FAQs menu tab above);
  • for help with Kunena versions that are not the latest stable release; or
  • for general Joomla or website administration matters

You must include your K 2.0 configuration report; if you do not include your configuration report, your topic may be closed (locked) or deleted without any further warnings from the moderators.

K 2.0 support will cease on 31 August 2013 and this section of the forum will be closed and archived after that time and no further questions will be answered about this version.

Question Kunena 2.0.1 known issues

More
11 years 9 months ago #1 by Matias
This topic lists some common known issues for Kunena 2.0.1
The topic has been locked.
More
11 years 9 months ago #2 by Matias
Replied by Matias on topic Kunena 2.0.1 known issues
Attachments manager is not displaying all attachments:

github.com/Kunena/Kunena-2.0/issues/952
The topic has been locked.
More
11 years 9 months ago - 11 years 9 months ago #3 by Matias
Replied by Matias on topic Kunena 2.0.1 known issues
500 Internal Server Error in Joomla! 2.5 with following text:

Fatal Error was detected!

Fatal Error: Call to a member function authorisedLevels() on a non-object in plugins/kunena/joomla/access.php on line 199

The error was detected in the Kunena - Joomla Plugin.


This is actually a bug in Joomla! and probably caused by corrupted session.

Fatal error in Kunena can be fixed by replacing plugins/kunena/joomla/access.php on lines 196-197:
Code:
public function authoriseCategories($userid, array &$categories) { $user = JFactory::getUser($userid);

with the following code:
Code:
public function authoriseCategories($userid, array &$categories) { $user = JFactory::getUser($userid); // WORKAROUND: Joomla! 2.5.6 bug returning NULL if $userid = 0 and session is corrupted. if (!($user instanceof JUser)) { $user = JUser::getInstance(); }
Last edit: 11 years 9 months ago by Matias.
The topic has been locked.
Time to create page: 0.400 seconds