Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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 6 months ago - 15 years 6 months ago #68336 by vatoloco
So please help! I tried and tried and tried and always the same! Reinstalled kunena + plugin several times! Checked everything so much times! But still this plugin creates hundreds of identical threads into the mapped category. config report has been posted earlier by me!

plg_kunenadiscuss_v1.6.0-RC2_b176_2010-08-31.zip doesn't create hundreds of threads! So why this happens now with the latest versions? Please have a look into that!

EDIT: Seems like this sucked up my site now! Blank page when trying to open up my frontpage and / or backend!!! I assume DB has blown up or something like that
Last edit: 15 years 6 months ago by vatoloco.

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

More
15 years 6 months ago #69307 by postkat

postkat wrote: For me the plugin is working now (except for the error after posting: Fatal error: Class 'CKunenaLink' not found)


Fixed the error problem by adding a few lines to kunena.posting.class.php

At line 911 right after
Code:
public function emailToSubscribers($LastPostUrl = false, $mailsubs = false, $mailmods = false, $mailadmins = false) {
insert
Code:
require_once (KUNENA_PATH_LIB . DS . 'kunena.link.class.php');

At line 927 after
Code:
else if ($_SERVER ["REMOTE_ADDR"] == '127.0.0.1') { $this->_app->enqueueMessage ( JText::_ ( 'COM_KUNENA_EMAIL_DISABLED' ), 'notice' ); return false; }
insert
Code:
if (file_exists(KUNENA_ABSTMPLTPATH .DS. 'smile.class.php')) { require_once (KUNENA_ABSTMPLTPATH .DS. 'smile.class.php'); } else { require_once (KUNENA_PATH_TEMPLATE_DEFAULT .DS. 'smile.class.php'); }

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

More
15 years 6 months ago #69497 by ruv123
It's grate news, that Kunena Discuss don't autocreate topics. I found this fix only here. But there is a little problem for me now.
When I switch the Quick answer form on I have a big white box (quick answer form) under every uncommented material.

And on front page I have more than 10 forms.

I turn the creation of topic on forum on first visit and quick unswer form On.
When I swith the creation topic on forun "on first comment", I have something like this:



It's much better for me, but i have thousands of topics created on my forum...
I think, that if topic on forum already exist, plugin show only link to go to the forum. But if topic not exist, plugin propose to post quick answer.
My question is the following - could you make the feature to show only link to forum even topic is not exist. And when user click this link, topic automaticaly created.
P.S. sorry for my bad english...

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

More
15 years 6 months ago #69498 by mijalis
You can disable the quick reply form and links to show only in article view.

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

More
15 years 6 months ago #69560 by ruv123

You can disable the quick reply form and links to show only in article view.


But my home page looks very ugly. Its full of quick reply forms. How can I fix this?

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

More
15 years 6 months ago #69612 by postkat

postkat wrote: At line 927 after

Code:
else if ($_SERVER ["REMOTE_ADDR"] == '127.0.0.1') { $this->_app->enqueueMessage ( JText::_ ( 'COM_KUNENA_EMAIL_DISABLED' ), 'notice' ); return false; }
insert
Code:
if (file_exists(KUNENA_ABSTMPLTPATH .DS. 'smile.class.php')) { require_once (KUNENA_ABSTMPLTPATH .DS. 'smile.class.php'); } else { require_once (KUNENA_PATH_TEMPLATE_DEFAULT .DS. 'smile.class.php'); }


After upgrade to the latest Kunena version this bit caused an error when replying to a topic on the forum."cannot redeclare class smile"

Now I moved the above code to line 476 in kunenadiscuss.php.
Errors gone. :)

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

Time to create page: 0.219 seconds