Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

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.

Question Joomla search-kunena plugins

More
15 years 7 months ago #66964 by Startpuntict
Found a creat way change the collations for the entire database.:woohoo:


How to change the collation for all tables in a MySQL database to UTF-8?

Changing the collation for all tables in a MySQL database can be time consuming depending on how many tables you have.

That's why we recommend using the following PHP script for changing the collation for all tables at a time:

<?php
$db = mysql_connect('localhost','myuser_mydbuser','mypassword');
if(!$db) echo "Cannot connect to the database - incorrect details";
mysql_select_db('myuser_mydbname'); $result=mysql_query('show tables');
while($tables = mysql_fetch_array($result)) {
foreach ($tables as $key => $value) {
mysql_query("ALTER TABLE $value COLLATE utf8_general_ci");
}}
echo "The collation of your database has been successfully changed!";
?>

Make sure to substitute in the above script:

- myuser_mydbname with your database name;

- myuser_mydbuser with your mysql username;

- mypassword with your password for the mysql user;

- utf8-general_ci with your new collation if different;

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

More
15 years 7 months ago - 15 years 7 months ago #67323 by ender

xillibit wrote: Hello,

try by this way :

It's works by taking this file from SVN : joomlacode.org/gf/project/kunena/scmsvn/...h%2Fkunenasearch.php

Replace this file in : plugins\search\


I have problem with search on my site, Kunena Search plugin installed, enabled - but Joomla search ignores forum...

and.. joomlacode.org/gf/project/kunena/scmsvn/...h%2Fkunenasearch.php this link si wrong :(

EDIT: Installed this plugin pizcar.com.ar/joomla/kunena/54-kunena-16-search-bot-plugin and kunena search from joomla works!

thnx
Last edit: 15 years 7 months ago by ender.
The following user(s) said Thank You: bairjohn

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

More
15 years 7 months ago #67333 by Startpuntict
:silly: :cheer: :P :woohoo: :woohoo:

It is working.
The search does the job now.
Finaly

The plugin did the job and

TNX

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

More
15 years 5 months ago #77976 by bairjohn
Do you know how long I have been looking for this, and tried everything. You the man...thx.

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

Time to create page: 0.276 seconds