Kunena 7.0.6 & Kunena 6.4.12 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.6 [K 7.0.6] 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 twelfth version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Solved Karma not working

More
2 years 3 months ago #230974 by sushidog
Replied by sushidog on topic Karma not working
Thanks, I give that a shot. Been a long time since I messed with mysql directly.

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

More
2 years 3 months ago #230975 by sushidog
Replied by sushidog on topic Karma not working

Hello,

The issue isn't coming from the Kunena template but because the table #__kunena_karma doesn't exist in the database. It should have been created when you had installed K6.2.x

You can create it with the following query, just change the prefix with your own :
Code:
CREATE TABLE IF NOT EXISTS `#__kunena_karma` (     `id`     INT(11) NOT NULL AUTO_INCREMENT,     `userid` int(11) NOT NULL,     `target_userid` int(11) NOT NULL,     `time` int(11) NOT NULL,     PRIMARY KEY (id) )     ENGINE = InnoDB     DEFAULT CHARSET = utf8mb4     DEFAULT COLLATE = utf8mb4_unicode_ci;
It took me a couple tries (after first backing up the db and the site), but this worked. Thanks for the query, it created the table and the feature works finally.

Thanks again.

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

Time to create page: 0.220 seconds