- Posts: 11
- Thank you received: 0
Kunena 7.0.2 Released
The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/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 topics in this category are for historical interest only. Owing to the structural changes that occurred in K 2.0, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.
Solved Autosubscription Plugin
- webiedesign
-
- Offline
- New Member
-
Table 'tablename_kunena_subscriptions_categories' doesn't exist SQL=INSERT INTO `prefix_kunena_subscriptions_categories` (`catid`, `userid`) SELECT `id`, 473 FROM `prefix_kunena_categories`
any ideas appreciated..I would love to use this
Please Log in or Create an account to join the conversation.
webiedesign wrote: ..... Table 'tablename_kunena_subscriptions_categories' doesn't exist ....
That table no longer exists in 2.0. My quick look shows that subscriptions are now stores in kunena_user_categories and kunena_user_topics, one record for each category/topic subscribed to. The plugin will need to be modified for this change.
It should also be modified to check access levels before subscribing. This is a task I am not qualified to do. Anyone else?
Please Log in or Create an account to join the conversation.
- webiedesign
-
- Offline
- New Member
-
- Posts: 11
- Thank you received: 0
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- webiedesign
-
- Offline
- New Member
-
- Posts: 11
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- skyhawk85u
-
- Offline
- New Member
-
- Posts: 7
- Thank you received: 1
As mentioned in other places it is very easy to destroy your database by manually changing it. I'll offer my SQL query here but don't even look at it if you're not sure what you're doing! It seems to be working with no adverse effects but I take no responsibility for it. My code puts a half dozen users into the "12" category, which corresponds to one of the committees. Obviously you would need to change the query to update your database, your table, and the correct category.
VALUES
('463', '12', '0', NULL, '1', ''),
('161', '12', '0', NULL, '1', ''),
('72', '12', '0', NULL, '1', ''),
('423', '12', '0', NULL, '1', ''),
('94', '12', '0', NULL, '1', ''),
('420', '12', '0', NULL, '1', '');
Please Log in or Create an account to join the conversation.