Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] 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.

The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Sticky J! 1.7.3 + CB 1.7.1 + K 1.7.1: After login as administrator from forum login, not all menu items shown in Kunena menu

More
14 years 4 months ago #115480 by tonyp
Sounds like you need to configure your module placement better, i.e. show on all pages expect and select all the pages you do not want it on :)

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

More
14 years 4 months ago - 14 years 4 months ago #115501 by MoJo_Fear
Great Idea but when I did that nothing changed :( But I discovered something that might be key, [strike]when I click on a topic the Kunena Menu also disappears[/strike]... this seems to be connected

Now the Kunena does show but the Login Module still doesn't.
Last edit: 14 years 4 months ago by MoJo_Fear.

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

More
14 years 4 months ago #115623 by Matias
This is Joomla 1.7.3+ bug: github.com/joomla/joomla-platform/pull/740

Currently I know no other way to fix this issue than fixing the code inside Joomla as the pull request suggests.

Of course there are some workarounds, like disabling login integration from Kunena..
The following user(s) said Thank You: MoJo_Fear

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

More
14 years 4 months ago #115641 by MoJo_Fear
Thanks for the reply but I do not know how to implement that fix, can you explain?

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

More
14 years 4 months ago #115659 by Matias
I make sure that it gets into Joomla 2.5.0. In the mean time I think I've found workaround in Kunena:

/components/com_kunena/kunena.php, go to line 53 and replace following:
Code:
$func = JString::strtolower ( JRequest::getCmd ( 'func', JRequest::getCmd ( 'view', '' )) ); JRequest::setVar ( 'func', $func ); $format = JRequest::getCmd ( 'format', 'html' );
with
Code:
$func = JString::strtolower ( JRequest::getCmd ( 'func', JRequest::getCmd ( 'view', '' )) ); $do = JRequest::getCmd ( 'do', '' ); $task = JRequest::getCmd ( 'task', '' ); $format = JRequest::getCmd ( 'format', 'html' ); JRequest::setVar ( 'func', $func ); // Workaround for Joomla 1.7.3 login bug, see: https://github.com/joomla/joomla-platform/pull/740 if ($func == 'profile' && ($task == 'login' || $task == 'logout')) { require_once ( KUNENA_PATH_FUNCS . '/profile.php'); $page = new CKunenaProfile(JFactory::getUser()->id, $task); }

And let me know if it fixes the issue.
The following user(s) said Thank You: MoJo_Fear

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

More
14 years 4 months ago #115684 by MoJo_Fear

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

Time to create page: 0.241 seconds