Kunena 6.2.5 & module Kunena Latest 6.0.7 released

The Kunena team has announce the arrival of Kunena 6.2.5 [K 6.2.5] which is now available for download as a native Joomla extension for J! 4.3.x/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

Question 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
12 years 2 months ago #51 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
12 years 2 months ago #52 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
12 years 2 months ago #53 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
12 years 2 months ago #54 by MoJo_Fear

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

More
12 years 2 months ago #55 by Matias
The fix will be in Kunena 1.7.2 and the real bug will hopefully be fixed into Joomla 2.5.0.

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

More
12 years 2 months ago #56 by MoJo_Fear
J! 1.7.3 + CB 1.7.1 + K 1.7.1: Kunena Menu Items Disappear after clicking on Topic!

Title says it all. Website is here www.mojoclan.net

This message contains confidential information

Database collation check: The collation of your table fields are correct

Legacy mode: Disabled | Joomla! SEF: Enabled | Joomla! SEF rewrite: Disabled | FTP layer: Disabled |

This message contains confidential information
htaccess: Missing | PHP environment: Max execution time: 30 seconds | Max execution memory: 128M | Max file upload: 10M

This message contains confidential information

Joomla default template details : ca_cloudbase2_j17 | author: CloudAccess.net | version: 2.0.3 | creationdate: July 27, 2011

Kunena default template details : InfinityHU | author: PedroHSI | version: 1.6.0 | creationdate: 2010-07-21

Kunena version detailled: Installed version: 1.7.1 | Build: 5162 | Version name: UnderUret | Kunena detailled configuration:

Warning: Spoiler!

Third-party components: CommunityBuilder 1.7.1 | UddeIm 2.5

Third-party SEF components: None

Plugins: System - Mootools Upgrade: Disabled | System - Mootools12: Disabled

Modules: None

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

More
12 years 2 months ago #57 by MoJo_Fear

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

More
12 years 2 months ago #58 by tonyp
The following user(s) said Thank You: MoJo_Fear

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

More
12 years 2 months ago #59 by MoJo_Fear

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

Time to create page: 0.407 seconds