- Posts: 34
- Thank you received: 3
Kunena 7.0.9 & Kunena 6.4.14 – Security Updates Released
The Kunena team has announce the arrival of Kunena 7.0.9 [K 7.0.9] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.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
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
14 years 8 months ago #115480
by tonyp
Replied by tonyp on topic Re: J! 1.7.3 + CB 1.7.1 + K 1.7.1: After login as administrator from forum login, not all menu items
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.
14 years 8 months ago - 14 years 8 months ago #115501
by MoJo_Fear
Replied by MoJo_Fear on topic Re: J! 1.7.3 + CB 1.7.1 + K 1.7.1: After login as administrator from forum login, not all menu items
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.
Now the Kunena does show but the Login Module still doesn't.
Last edit: 14 years 8 months ago by MoJo_Fear.
Please Log in or Create an account to join the conversation.
14 years 8 months ago #115623
by Matias
Replied by Matias on topic Re: J! 1.7.3 + CB 1.7.1 + K 1.7.1: After login as administrator from forum login, not all menu items
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..
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.
14 years 8 months ago #115641
by MoJo_Fear
Replied by MoJo_Fear on topic Re: J! 1.7.3 + CB 1.7.1 + K 1.7.1: After login as administrator from forum login, not all menu items
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.
14 years 8 months ago #115659
by Matias
Replied by Matias on topic Re: J! 1.7.3 + CB 1.7.1 + K 1.7.1: After login as administrator from forum login, not all menu items
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:
with
And let me know if it fixes the issue.
/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' );
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.
14 years 8 months ago #115684
by MoJo_Fear
Replied by MoJo_Fear on topic Re: J! 1.7.3 + CB 1.7.1 + K 1.7.1: After login as administrator from forum login, not all menu items
Yes it worked! Thanks a lot!
Please Log in or Create an account to join the conversation.
Time to create page: 0.288 seconds