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.
Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.
No need for cron or anything else...if you are using Joomla 1.6, uncomment the onUserAfterSave function as stated earlier in this post. I have modified it so that it will not only add new users automatically but also modify user permissions for existing users:
Code:
public function onUserAfterSave($user, $isnew, $success, $msg) {
//Don't continue if the user wasn't stored succesfully
$db = JFactory::getDBO ();
if (! $success) {
return false;
}
if (! $isnew) {
$db->setQuery ( "UPDATE #__kunena_sessions SET allowed='na' WHERE userid = " . intval($user ['id']) );
$db->query ();
return true;
}
// Set the db function
$db->setQuery ( "INSERT INTO #__kunena_users (userid) VALUES ('" . intval($user ['id']) . "')" );
$db->query ();
}