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.

Important Search error with cyrillic characters.

More
16 years 11 months ago #18962 by Matias

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

More
16 years 11 months ago #18969 by imperium
No, it doesnt help me.

U can change collation with this php scrypt.

Code:
<?php // your connection mysql_connect("localhost","username","password"); mysql_select_db("database_name"); // convert code $res = mysql_query("SHOW TABLES"); while ($row = mysql_fetch_array($res)) { foreach ($row as $key => $table) { mysql_query("ALTER TABLE " . $table . " CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci"); echo $key . " =&gt; " . $table . " CONVERTED<br />"; } } ?>

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

More
16 years 11 months ago #18988 by Matias
This one is hard one..

It has probably something to do with your database. Some setting, something.. Did you already try to convert into:

mysql_query("ALTER TABLE " . $table . " CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin"); ?

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

Time to create page: 0.251 seconds