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.

Question Front end error after instillation

More
17 years 4 days ago #16683 by davep
Error displaying on front end after instillation of 1.5.1b Can anyone help?

Notice: Undefined offset: 0 in C:\wamp\www\Joomla_1.5.10\components\com_kunena\template\default\plugin\stats\stats.class.php on line 76

Notice: Trying to get property of non-object in C:\wamp\www\Joomla_1.5.10\components\com_kunena\template\default\plugin\stats\stats.class.php on line 76

Notice: Undefined offset: 0 in C:\wamp\www\Joomla_1.5.10\components\com_kunena\template\default\plugin\stats\stats.class.php on line 83

Notice: Trying to get property of non-object in C:\wamp\www\Joomla_1.5.10\components\com_kunena\template\default\plugin\stats\stats.class.php on line 83

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

More
17 years 4 days ago #16691 by Matias
They are not serious

You can hide PHP notices in production environment by changing Joomla Error Reporting to none (for Kunena 1.0.10, too).

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

More
17 years 3 days ago #16809 by davep
Thanks for your response. Error still appears when error reporting is turned off. Any other thoughts?

D

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

More
17 years 3 days ago #16815 by xillibit
Hello,

in the file components/com_kunena/template/default/plugin/stats/stats.class.php at line 76 replace :
Code:
$topmessage = $topposters[0]->posts;

by
Code:
if(isset($topposters[0]->posts)) { $topmessage = $topposters[0]->posts; }

and at line 83 replace :
Code:
$topprofil = $topprofiles[0]->hits;

by
Code:
if(isset($topprofiles[0]->hits)) { $topprofil = $topprofiles[0]->hits; }

I don't provide support by PM, because this can be useful for someone else.

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

More
16 years 11 months ago #17377 by davep
Great, that looks to be working fine. Same problem in Categories. Do you have a code fix for that?

Thanks,

D


Notice: Trying to get property of non-object in C:\wamp\www\Joomla_1.5.10\components\com_kunena\template\default_ex\listcat.php on line 296

Notice: Trying to get property of non-object in C:\wamp\www\Joomla_1.5.10\components\com_kunena\template\default_ex\listcat.php on line 297

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

Time to create page: 0.520 seconds