Kunena 6.2.6 released

The Kunena team has announce the arrival of Kunena 6.2.6 [K 6.2.6] which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x. This version addresses most of the issues that were discovered in K 6.1 / K 6.2 and issues discovered during the last development stages of K 6.2

Question Warnings in search

More
14 years 10 months ago #21 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 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
14 years 10 months ago #22 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
14 years 10 months ago #23 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
14 years 10 months ago #24 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 KB
Attachments:

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

More
14 years 10 months ago #25 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
14 years 10 months ago #26 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.

More
14 years 10 months ago #27 by woonydanny
Replied by woonydanny on topic Re:Warnings in search
is it possible to attach a kunena.class.php file with all the changes to overwrite my one :)

still wish that i can write my forum signature through a jomsocial plugin and do it from my jomsocial profile :(

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

More
14 years 10 months ago #28 by sozzled
Replied by sozzled on topic Re:Warnings in search
@Matias: I would like to see the universal fix included in an updated Kunena build, if that's possible, please :)

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

More
14 years 10 months ago #29 by Matias
Replied by Matias on topic Re:Warnings in search
I will do this for Kunena 1.0 tree, so maybe we get a build with worst regression bugs fixed.

In the mean time: can someone provide zip file with this fix?

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

More
14 years 10 months ago #30 by xillibit
Replied by xillibit on topic Re:Warnings in search
The zip with this fixe :

File Attachment:

File Name: class-af81...068e.zip
File Size:12 KB

I don't provide support by PM, because this can be useful for someone else.
Attachments:

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

Time to create page: 0.385 seconds