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.

Question Warnings in search

More
16 years 7 months ago #17029 by rinuccio
Replied by rinuccio on topic Re:Warnings in search
jerry wrote:

rinuccio wrote:

Hello to all. I can not correct this error. Some of you may attach the edited file? Thanks :)

Here

File Attachment:

File Name: class-67d0...3905.zip
File Size:12.08 KB


Hi xilibit, thanks for your help but your file not solved my problem :blush:

demo >> stonerfanclub.com/forum.html?func=search&q=duc
Code:
Warning: mb_substr() [function.mb-substr]: Unknown encoding "" in /home/user2185/public_html/components/com_kunena/class.kunena.php on line 1292

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

More
16 years 7 months ago #17034 by tramber91
Replied by tramber91 on topic Re:Warnings in search
To Xilibit too

thanks but

Doesn't work too :(
always the same pb (search - advanced search area) with your file

Warning: mb_substr() [function.mb-substr]: Unknown encoding "" in /homepages/41/d267095683/htdocs/_test_tramber/components/com_kunena/class.kunena.php on line 1292


take care

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

More
16 years 7 months ago #17036 by sozzled
Replied by sozzled on topic Re:Warnings in search
@tramber91: I had exactly the same problem with the search function after upgrading to K 1.0.10 and I used jerry's fix at #16376 . I think this is so important that the developers should merge the changes with the K 1.0.10 release build.

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

More
16 years 7 months ago #17062 by roland76
Replied by roland76 on topic Re:Warnings in search
Hello,

and a next try... :side:

This file should work with the European timeformat...

File Attachment:

File Name: class-e85b...629a.zip
File Size:12.24 KB

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

More
16 years 7 months ago #17106 by tramber91
Replied by tramber91 on topic Re:Warnings in search
Hi Roland76

It seems OK for me with your file :cheer:

thanks

take care

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

More
16 years 7 months ago #17287 by Matias
Replied by Matias on topic Re:Warnings in search
Here's a mb_substr() fix which works for everybody:
Code:
function kn_mb_substr($str, $start, $length=NULL, $encoding=NULL) { if ($length === NULL) $length = strlen($str); if ($encoding === NULL) $encoding = KUNENA_CHARSET; if (!function_exists('mb_substr')) { if (CKunenaTools::isJoomla15()) { require_once(JPATH_LIBRARIES.DS.'phputf8'.DS.'utf8.php'); } else { return substr($str, $start, $length); } } return mb_substr($str, $start, $length, $encoding); }

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

Time to create page: 0.308 seconds