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
Sticky How to protect my forum from spam
I'ts such a wounderful application in this wounderful world

But joomla extensions would be another place to look.
Please Log in or Create an account to join the conversation.
katalyst wrote: I've taken the hack from here:
www.kunena.org/forum/114-user-written-ha...for-x-first-messages
and updated it to work with Kunena 1.6.3
To use it, you would edit the /components/com_kunena/lib/kunena.posting.class.php file around line 389 and add the below code. You can edit the $ks_minposts variable to however many posts you want to set as the minimum before the user is no longer moderated.
I'm open to suggestions on how to improve it. I would love to see something like that implemented in the core. I hope its useful to someone.
// Hold the post for new users
$ks_minposts = 2;
$query = "SELECT (count(*)<{$ks_minposts}) AS review FROM #__kunena_messages WHERE userid={$this->_my->id} AND hold=0";
$this->_db->setQuery ( $query );
$this->_db->query ();
$dberror = $this->checkDatabaseError ();
if ($dberror){
return $this->setError ( '-post-', JText::_ ( 'COM_KUNENA_POST_ERROR_SAVE' ) );
}
$ks_userposts = $this->_db->loadResult ();
if ($ks_userposts <= $ks_minposts) {
$this->set ( 'hold', 1 );
}
thanks for this, it worked in a way but it moderated an admin topic with 100 posts. I think there is a check missing. I'm using 1.6.5 if thats why
Please Log in or Create an account to join the conversation.
Is there a way for me to delete the post of users spam, I cant find a way to do this. Also is there a program I can add on to stop spam from getting through?
Thanks,
Tonua@ Surgisnuggly.com
Please Log in or Create an account to join the conversation.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
But in the end I solved it!!! Question and Answer is the absolute zero spam solution.
Captcha can be read by advanced computer software or by humans employed for that.
But question and answer, mainly if your website is non-english, puts a human or non-human in the impossibility to understand and reply correctly.
So, how can I put Question and Answer on my Kunena Forum?
P.S. I noticed that if user get wrong captcha they cannot go back and reenter code, while preserving written text, in kunena. So they have to write it again, frustrating...
Please Log in or Create an account to join the conversation.