- Posts: 1
- Thank you received: 0
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.
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
- Biledriver
-
- Offline
- New Member
-
In components/com_kunena/kunena.php:
The issue was, KUNENA_ABSPATH is either wrong or undefined. I looked at the other cases in the statement and changed the above to:
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.
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!
Please Log in or Create an account to join the conversation.
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
Please Log in or Create an account to join the conversation.
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.
Please Log in or Create an account to join the conversation.
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.