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.

This section is for questions directly related to the procedure for installing Kunena for the first time or upgrading from an older version of Kunena.

Use this category:
  • to ask how to install or upgrade; or
  • if you encountered problems during the installation or upgrade procedure.

Use a different category to ask questions about problems that you may be having after you successfully installed or upgraded the currently supported version. If you are unsure what is the current supported version of Kunena, please go to the download page.

Question Kunena Forum not found (class)

More
8 years 6 months ago #196873 by 53e437eb2fd79d469d4f37b8
Dont worry I will report it to Joocial.

The important thing is that there is no issues.

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

More
8 years 6 months ago #196874 by ruud
Replied by ruud on topic Kunena Forum not found (class)
Top :)

sharing = caring

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

More
8 years 5 months ago #196913 by 53e437eb2fd79d469d4f37b8
Hello ruud, I got response from Joocial team here is the answer:

Hi,

Thank you for reporting. The plugin has a dependency on Kunena.

To avoid the message during installation of Kunena, we recommend disabling the plugin in the process to upgrade, or simply ignore it until the installation is completed.

We can't remove it since it prevents the execution of the plugin when Kunena is no longer installed.

Best Regards,

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

More
8 years 5 months ago #196914 by ruud
Replied by ruud on topic Kunena Forum not found (class)
Hi Cyrusxxxx, Good to hear it is installation warning only. The solution they provide is not 'subscription-worthy' IMO :S

sharing = caring

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

More
8 years 5 months ago #196957 by anibal.sanchez
Hi,

Thank you for reporting. The plugin has a dependency on Kunena.

To avoid the message during installation of Kunena, we recommend disabling the plugin in the process to upgrade, or simply ignore it until the installation is completed.

We can't remove the checkup since it prevents the execution of the plugin when Kunena is no longer installed.

Best Regards

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

More
8 years 5 months ago #196997 by ruud
Replied by ruud on topic Kunena Forum not found (class)
No need to remove the checkup, just to remove the (JError is deprecated) error messages. (in the code below I have commented them out)
These add no value (other then visual messages on both back-end and front-end).

file: ./plugins/system/autotweetkunena/autotweetkunena.php
Code:
// Check if Kunena API exists $api = JPATH_ADMINISTRATOR . '/components/com_kunena/api.php'; if (!is_file($api)) { $logger = AutotweetLogger::getInstance(); $logger->log(JLog::ERROR, 'Kunena Forum not found (api)'); // JError::raiseWarning('5', 'Kunena Forum not found (api)'); return; } jimport('joomla.application.component.helper'); // Check if Kunena component is installed/enabled if (!JComponentHelper::isEnabled('com_kunena', true)) { $logger = AutotweetLogger::getInstance(); $logger->log(JLog::ERROR, 'Kunena Forum not found (component)'); // JError::raiseWarning('5', 'Kunena Forum not found (component)'); return; } // Load Kunena API require_once $api; // Do not load if Kunena version is not supported or Kunena is not installed if (!(class_exists('KunenaForum') && KunenaForum::isCompatible('3.0') && KunenaForum::installed())) { $logger = AutotweetLogger::getInstance(); $logger->log(JLog::ERROR, 'Kunena Forum not found (class)'); // JError::raiseWarning('5', 'Kunena Forum not found (class)'); return; }

sharing = caring

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

Time to create page: 0.247 seconds