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

Solved After upgrade from 5.1.3 to 5.1.4 many things are broken!!!

More
7 years 7 months ago #204376 by Slacker
The error messages were caused by the changes you suggested in template.php, so it is not a new topic.

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

More
7 years 7 months ago #204377 by 810
Should be:
Code:
$doc = JFactory::getDocument(); $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/bootstrap.min.css'); $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/bootstrap-extended.css'); $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/bootstrap-responsive.min.css');

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

More
7 years 7 months ago #204392 by rich
I'm sorry, it was my mistake. I had tested this fix and then only copied this three lines directly from the file. I've edited the message above now.

Important! Always create a backup before you make any changes to your website!

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

More
7 years 6 months ago #204447 by Slacker
Thanks! i have tested it on my live site for some hours now and it seems to work OK with Bootstrap Yes. After the Kunena upgrade CPU and memory consumtion has increased and I now looking for a change back to normal with earlier settings.

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

More
7 years 6 months ago #204498 by Slacker
The resource use decreased after I loaded bootstrap with Kunena rather than adding bootstrap support to the Beez3 template via Advanced settings. and adding com_kunena there. The errors with limited resources decreased with 90 % (have Cloud Linux host)

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

More
7 years 6 months ago - 7 years 6 months ago #204561 by Slacker
There is one more thing that needs to be fixed:
Code:
$doc = JFactory::getDocument(); $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/bootstrap.min.css'); $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/bootstrap-extended.css'); $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/bootstrap-responsive.min.css'); if ($ktemplate->params->get('icomoon')) { $this->addStyleSheet(Uri::base(true) . '/media/jui/css/icomoon.css'); } }

should be:
Code:
$doc = JFactory::getDocument(); $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/bootstrap.min.css'); $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/bootstrap-extended.css'); $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/bootstrap-responsive.min.css'); if ($ktemplate->params->get('icomoon')) { $doc->addStyleSheet(Uri::base(true) . '/media/jui/css/icomoon.css'); } }
Without this change icomoon.css is loaded slowly.
Last edit: 7 years 6 months ago by Slacker.

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

Time to create page: 0.235 seconds