Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

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

The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.

The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 1.7, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.

Loved Hack poll v0.3.2.2 for Kunena 1.5.12 and 1.0.11

More
16 years 6 days ago #48358 by Biledriver
I found a bug that caused the vote button to do nothing on my site. Much like other users.


In components/com_kunena/kunena.php:
Code:
case 'poll': if (file_exists(KUNENA_ABSTMPLTPATH . '/plugin/poll/poll.php')) { include (KUNENA_ABSTMPLTPATH . '/plugin/poll/poll.php'); } else { include (KUNENA_ABSPATH . '/template/default/plugin/poll/poll.php'); } break;

The issue was, KUNENA_ABSPATH is either wrong or undefined. I looked at the other cases in the statement and changed the above to:
Code:
case 'poll': if (file_exists(KUNENA_ABSTMPLTPATH . '/plugin/poll/poll.php')) { include (KUNENA_ABSTMPLTPATH . '/plugin/poll/poll.php'); } else { include (KUNENA_PATH_TEMPLATE_DEFAULT .DS. 'plugin/poll/poll.php'); } break;

and now it works fine. I don't know if the change was overlooked or something in a newer Kunena package (I just downloaded and installed Kunena 1.5.11 on a brand new site.)

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

More
16 years 4 days ago #48495 by Moonstone
xillibit wrote:

There is a configuration setting for that in K1.6 but not in the hack.


That's great news, xillibit, thanks!

I'm getting more and more excited about Kunena 1.6! :cheer:

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

More
16 years 2 days ago #48671 by Naesstrom
Biledriver wrote:

I found a bug that caused the vote button to do nothing on my site. Much like other users.


In components/com_kunena/kunena.php:

Code:
case 'poll': if (file_exists(KUNENA_ABSTMPLTPATH . '/plugin/poll/poll.php')) { include (KUNENA_ABSTMPLTPATH . '/plugin/poll/poll.php'); } else { include (KUNENA_ABSPATH . '/template/default/plugin/poll/poll.php'); } break;

The issue was, KUNENA_ABSPATH is either wrong or undefined. I looked at the other cases in the statement and changed the above to:
Code:
case 'poll': if (file_exists(KUNENA_ABSTMPLTPATH . '/plugin/poll/poll.php')) { include (KUNENA_ABSTMPLTPATH . '/plugin/poll/poll.php'); } else { include (KUNENA_PATH_TEMPLATE_DEFAULT .DS. 'plugin/poll/poll.php'); } break;

and now it works fine. I don't know if the change was overlooked or something in a newer Kunena package (I just downloaded and installed Kunena 1.5.11 on a brand new site.)


Thank, I copied your code and replaced and it worked flawless after that... atleast something to use while we wait for 1.6 :D

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

More
15 years 11 months ago #48997 by TBK
The polls uses the threadid instead of the pollid in jos_fb_polls_options and jos_fb_polls_users as the "global" reference, seems a bit odd.

jos_fb_polls_users, should properly be renamed to jos_fb_polls_votes, since that is the purpose of the table.

I nice feature would be an option to set the publish up datetime for the poll. Just like a normal article:
- publish_up datetime
- publish_down datetime

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

More
15 years 11 months ago #49220 by Matias
I think you should now try polls in K1.6 and report your findings in our K1.6 category -- I suspect that Xillibit doesn't want to manage two versions of it. :)

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

More
15 years 11 months ago #49246 by xillibit
Now, guys you can forgot this hack and test k1.6 alpha which is just released :)

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.303 seconds