Kunena 7.0.3 Released

The Kunena team has announce the arrival of Kunena 7.0.3 [K 7.0.3] 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

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
15 years 4 weeks ago #88822 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
15 years 4 weeks ago #88834 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
14 years 11 months ago - 14 years 11 months ago #93284 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.
Last edit: 14 years 11 months ago by mumins.

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

More
14 years 11 months ago #93296 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.232 seconds