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

This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.

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

More
14 years 3 months ago #116766 by kylepond
I'm almost done with this plugin. The plugin is pretty basic- it will just subscribe new users to all categories. The design allows for opt out. I'll share when finished if anybody wants it.

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

More
14 years 3 months ago #116841 by kylepond
Attached is the autosubsription pluging described above. It won't work pre Joomla 1.6, but could be modified. I hope other people find it useful.
The following user(s) said Thank You: Jiminimonka

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

More
14 years 3 months ago #116914 by Jiminimonka
I will have a look, not sure if it is what I want but still.

Thanks.

Please read the FAQ.
Only one question per topic.
Search before you ask a question.

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

More
14 years 2 months ago #119111 by kylepond
Yikes, don't use the first file. I just noticed I had an extra space at the end of the code.

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

More
14 years 2 months ago #120262 by lurd.sammie
I also need auto-subscribe plugin. I have just moved from phpBB where I was using Board watch to auto-subscribe all users. I had to move because one has to depend on joomla-phpBB bridges for a single sign-on all the time and quite often they let you down badly.

The Board watch also appends a link for you to click if you don't want to auto-subscribe to topics anymore.

Another important feature of Board watch is the option to send notification email once and not send anymore until the user visits the forum. So if user selects such option then he will not be notified again until he visits the forum to read the updates. This way it curbs the flood of emails bombarding the users which in itself could be irritating to users.

By the way has anybody tried this plugin yet?

Any feedback on performance?

Thnx

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

More
14 years 2 months ago #120269 by kylepond

File Attachment:

File Name: kunenaautosub.zip
File Size:1.07 KB

I've been using it. It's basic and I haven't noticed any performance issues. If you want to test it, make sure you use the attached file. There's very little code in the plugin:
Code:
<?php defined('_JEXEC') or die('Restricted access'); jimport('joomla.plugin.plugin'); class plgUserkunena_autosubcat extends JPlugin { function onUserAfterSave($data, $isNew, $result, $error) { if (! $isNew) { return true; } $userid = JArrayHelper::getValue($data, 'id', 50, 'int'); if($result) { $db = &JFactory::getDbo(); $query = "INSERT INTO `#__kunena_subscriptions_categories` (`catid`, `userid`) SELECT `id`, $userid FROM `#__kunena_categories`"; $db->setQuery($query); if (!$db->query()) { throw new Exception($db->getErrorMsg()); } } } } ?>


As per the update notifications, I believe Kunena has that feature. Under configurations, see users, subscriptions, topic subscriptions (email first update).

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

Time to create page: 0.264 seconds