- Posts: 6
- Thank you received: 0
Kunena 7.0.7 Released
The Kunena team has announce the arrival of Kunena 7.0.7 [K 7.0.7] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.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
Question Cannot see post.
17 years 4 months ago #5290
by knez
Replied by knez on topic Re:Cannot see post.
To be more clear, when the post contains only non specific characters it is shown right, I can see post after submitting it, and for thowes post with special characters thet arent shown, they are corect written in the database, as I can tell.
Please Log in or Create an account to join the conversation.
17 years 4 months ago #5294
by knez
Replied by knez on topic Re:Cannot see post.
You can test the problem here
www.tpautosport.com/webshop/index.php?op...com_kunena&Itemid=87
register first
www.tpautosport.com/webshop/index.php?op...com_kunena&Itemid=87
register first
Please Log in or Create an account to join the conversation.
17 years 4 months ago - 17 years 4 months ago #5380
by Matias
Replied by Matias on topic Re:Cannot see post.
Try this:
components/com_kunena/template/default/smile.class.php:
Search for function smileParserCallback:
Add this line into the beginning of the function:
Replace this:
With this:
Does it work for you?
components/com_kunena/template/default/smile.class.php:
Search for function smileParserCallback:
Add this line into the beginning of the function:
Code:
$encoding = mb_detect_encoding($fb_message, 'UTF-8,iso-8859-1' );
Replace this:
Code:
while (list($emo_txt, $emo_src) = each($message_emoticons)) {
$emo_txt = strtr($emo_txt, $regexp_trans);
$fb_message_txt = preg_replace('/(\W|\A)'.$emo_txt.'(\W|\Z)/u', '\1<img src="' . $emo_src . '" alt="" style="vertical-align: middle;border:0px;" />\2', $fb_message_txt);
}
With this:
Code:
while (list($emo_txt, $emo_src) = each($message_emoticons)) {
$emo_txt = strtr($emo_txt, $regexp_trans);
$fb_message_txt = preg_replace('/(\W|\A)'.$emo_txt.'(\W|\Z)/'.$encoding, '\1<img src="' . $emo_src . '" alt="" style="vertical-align: middle;border:0px;" />\2', $fb_message_txt);
}
Does it work for you?
Last edit: 17 years 4 months ago by Matias.
Please Log in or Create an account to join the conversation.
17 years 4 months ago #5405
by knez
Replied by knez on topic Re:Cannot see post.
I get this eror message multiple times, maby I done something wrong?
Warning: preg_replace() [function.preg-replace]: Unknown modifier 'T' in /home2/tpauto/public_html/webshop/components/com_kunena/template/default/smile.class.php on line 53
Warning: preg_replace() [function.preg-replace]: Unknown modifier 'T' in /home2/tpauto/public_html/webshop/components/com_kunena/template/default/smile.class.php on line 53
Warning: preg_replace() [function.preg-replace]: Unknown modifier 'T' in /home2/tpauto/public_html/webshop/components/com_kunena/template/default/smile.class.php on line 53
.
.
.
.
Warning: preg_replace() [function.preg-replace]: Unknown modifier 'T' in /home2/tpauto/public_html/webshop/components/com_kunena/template/default/smile.class.php on line 53
Warning: preg_replace() [function.preg-replace]: Unknown modifier 'T' in /home2/tpauto/public_html/webshop/components/com_kunena/template/default/smile.class.php on line 53
Warning: preg_replace() [function.preg-replace]: Unknown modifier 'T' in /home2/tpauto/public_html/webshop/components/com_kunena/template/default/smile.class.php on line 53
.
.
.
.
Please Log in or Create an account to join the conversation.
17 years 4 months ago #5425
by Matias
Replied by Matias on topic Re:Cannot see post.
Well, then..
I've documented better version of the fix into here:
docs.kunena.com/index.php/Empty_messages_bug
Does it work for you?
I've documented better version of the fix into here:
docs.kunena.com/index.php/Empty_messages_bug
Does it work for you?
Please Log in or Create an account to join the conversation.
17 years 4 months ago #5534
by knez
Replied by knez on topic Re:Cannot see post.
I am sorry but it still does not work, no more error on page, but when I use special characters I do not see post, thanks for help very much, I do not know what to do?
Please Log in or Create an account to join the conversation.
Time to create page: 0.252 seconds