Kunena 6.4.8 Released

The Kunena team has announce the arrival of Kunena 6.4.8 [K 6.4.8] in stable which is now available for download as a native Joomla extension for J! 5.0.x/5.1.x/5.2.x/5.3.x/5.4.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 6.4
Important note: Go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated. This is particularly necessary for major version jumps so that the table changes are adapted.

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 1.7, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.

Question Hack Kunena 1.5/1.6 Posts/Messages Minimum Character Limit

  • C0n
  • C0n's Avatar Topic Author
  • Offline
  • Premium Member
  • Premium Member
  • Only the strongest will survive
More
14 years 2 months ago - 14 years 2 months ago #110493 by C0n
In order to achieve this you are going to need to edit a plugin called "forum protection light".

Download it : joomla.stefysoft.com/downloads/free-exte...light15_download.php

Here is my code
Code:
$check = JRequest::getVar('message'); if (strlen($check) < 10) { $spam['spam'] = true; $spam['error'] .= 'Minimum of 10 characters allowed.<br />'; }

Once you have instaled, enabled and setup there plugin you want to add my code to the following location.
"/plugins/system/forums_protection_light.php" (Lines : 90-96)
Code:
$bdreplace = $params->get('bdreplace', '-_-'); $check = JRequest::getVar('message'); if (strlen($check) < 10) { $spam['spam'] = true; $spam['error'] .= 'Minimum of 10 characters allowed.<br />'; } if ($usebadword == 1)

It is currently set for the minimum limit of 10 characters just change the value from 10 to what ever you wish the character limit on your forum to be.

I have only tested it with 1.6 i think there plugin is compatible with 1.5 and 1.7 so it should work with them too.
Last edit: 14 years 2 months ago by C0n.

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

Time to create page: 0.280 seconds