Kunena 6.2.5 & module Kunena Latest 6.0.7 released

The Kunena team has announce the arrival of Kunena 6.2.5 [K 6.2.5] which is now available for download as a native Joomla extension for J! 4.3.x/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

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 For guys which want played or tested a bit : improved version of Kunena Discuss plugin

More
13 years 2 months ago - 13 years 2 months ago #81 by xillibit
It's the international forum so you need to write in english, même si je comprends le français :)

I don't provide support by PM, because this can be useful for someone else.
Last edit: 13 years 2 months ago by xillibit.

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

More
13 years 1 month ago #82 by Grandson

mayashu wrote: I have the same problem with larleuch

larleuch wrote: Hi !

I have a fatal error with plg_kunenadiscuss_v1.6.2_b265_2010-12-29 when posting :


Fatal error: Class 'smile' not found in ....../components/com_kunena/lib/kunena.posting.class.php on line 930


Can you help me please, I don't find !

Thank you !

Is there any solution to this problem?
I have Kunena 1.6.2 / Kunena Discuss 1.6.2

I want to mention that the messages are posted where and how should this error occur only this year .. if I refresh the page disappears.


Thank you

Dragos Popovici



The same problem.

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

More
13 years 1 month ago - 13 years 1 month ago #83 by xillibit
Do you have replaced this two files :

Put it here : /administrator/components/com_kunena/libraries/html/ :

File Attachment:

File Name: parser_2011-01-26.zip
File Size:1 KB


In fact, this issue is already fixed svn, just grab the followings files and replace it in omponents\com_kunena\lib\ :

File Attachment:

File Name: lib_2011-01-19.zip
File Size:21 KB
?

I don't provide support by PM, because this can be useful for someone else.
Last edit: 13 years 1 month ago by xillibit.
The following user(s) said Thank You: lunado, Grandson

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

More
13 years 1 month ago #84 by Grandson

xillibit wrote: Do you have replaced this two files :

Put it here : /administrator/components/com_kunena/libraries/html/ :

File Attachment:

File Name: parser_2011-01-26.zip
File Size:1 KB


In fact, this issue is already fixed svn, just grab the followings files and replace it in omponents\com_kunena\lib\ :

File Attachment:

File Name: lib_2011-01-19.zip
File Size:21 KB
?


Thank you. It worked!

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

More
13 years 2 weeks ago #85 by dz15fr

dz15fr wrote: Merci cela semble avoir corrigé le problème!
je vous tiendrais au courant si c'est stable.
Google translation:
Thank you this seems to have corrected the problem!
I'll let you know if it's stable.


donc ce problème est réglé.
mais là je rencontre une erreurs avec le plugin EasyCalcCheck qui n'est pas détecté dans kunena discuss.
ce plugin à un autre problème avec kunena qui semble avoir été réglé. j'ai reposer la question pour peut être avoir la solution. ce n'est pas facile pour un francophone.

sujet dans le forum - About Forum

Google translation:
So this problem is resolved.
but there I encountered an error with the plugin EasyCalcCheck not detected in Kunena discuss.
this plugin to another problem with Kunena appears to have been resolved. I put the question to be having the solution. it's not easy for a francophone.

sujet dans le forum - About Forum

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

More
13 years 2 weeks ago #86 by xillibit
Tu dois utiliser ça : docs.kunena.org/index.php/How_to_proper_...aptcha_in_kunena_1.6

et activer le captcha dans la configuration de kunena

I don't provide support by PM, because this can be useful for someone else.
The following user(s) said Thank You: dz15fr

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

More
12 years 11 months ago - 12 years 11 months ago #87 by mumins
The technical challenge was:

1. Nothing to show on frontpage.
2. On blog view show link to forum post if article have comments.
3. On article view show quick form and comments.

J 1.5.22, com_kunena_v1.6.3_b4344_2011-01-31, plg_kunenadiscuss_v1.6.2_b265_2010-12-29, files in /administrator/components/com_kunena/libraries/html/ copied.

Using plugin settings i can't get this. Settings:



I made quick and dirty hack:
In /plugins/content/kunenadiscuss.php find
Code:
$myprofile = KunenaFactory::getUser(); $this->open = $this->params->get ( 'quickpost_open', false ); $this->name = $myprofile->getName(); ob_start (); $this->debug ( "showForm: Rendering form" ); include (JPATH_ROOT . '/plugins/content/kunenadiscuss/form.php');
and replace with:
Code:
$isFrontPage = JRequest::getVar ( 'view' ) == 'frontpage'; $isBlogPage = JRequest::getVar ( 'layout' ) == 'blog'; if ($isBlogPage || $isFrontPage) { } else { $myprofile = KunenaFactory::getUser(); $this->open = $this->params->get ( 'quickpost_open', false ); $this->name = $myprofile->getName(); ob_start (); $this->debug ( "showForm: Rendering form" ); include (JPATH_ROOT . '/plugins/content/kunenadiscuss/form.php'); }

When i try to make this with plugin administration settings i got quick form everywhere when i set Link (blog and frontpage). I'm not sure that it's right way how i do this, it's quick and dirty.

And second hack (if article have comment) link to text "Discuss this article in the forums (X replies)." opens new post form in forum not just show current forum thread.

For this one:

In /plugins/content/kunenadiscuss.php find
Code:
$content = CKunenaLink::GetThreadLink ( 'view', $catid, $thread, $linktitle, $linktitle );
and replace with:
Code:
$content = CKunenaLink::GetThreadLinkReply ( 'post', 'reply', $catid, $thread, $linktitle, $linktitle );
Then in file /components/com_kunena/lib/kunena.link.class.php find
Code:
function GetThreadLink($func, $catid, $threadid, $threadname, $title, $rel = 'follow', $class = '') { return CKunenaLink::GetSefHrefLink ( KUNENA_LIVEURLREL . '&func=' . $func . '&catid=' . $catid . '&id=' . $threadid, $threadname, $title, $rel, $class ); }
and put this code after:
Code:
function GetThreadLinkReply($func, $do, $catid, $threadid, $threadname, $title, $rel = 'follow', $class = '') { return CKunenaLink::GetSefHrefLink ( KUNENA_LIVEURLREL . '&func=' . $func . '&do=' . $do . '&catid=' . $catid . '&id=' . $threadid, $threadname, $title, $rel, $class );

There is both files edited (my changes marked with //mum)

File Attachment:

File Name: kun_disc.zip
File Size:11 KB


And after all - big thanks to xillibit for effort to stop articles->forum autoposting madness ;>

MBR
m.

P.S.
I found strange bug - if in Kunena configuration -> Frontend setiings -=Message Time Format=- is XX hours, XXminutes ago and user is logged in - quickpost make wrong post timestamp (show ??? not date/time). With other time formats or user = guest everything is ok. Wierd.
Attachments:
Last edit: 12 years 11 months ago by mumins.

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

More
12 years 11 months ago #88 by xillibit
We have added some features asked in plg_kunenadiscuss_v1.6.3 which is in the road togheter with kunena 1.6.4.

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

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

Time to create page: 0.705 seconds