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.

This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.

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

Question groupjive integration kunena1.6

More
15 years 6 months ago #71628 by sorema
hi! i'm running kunena 1.6 and gorupjive 1.8.1
using cb_groupjive plugin the forum integration works fine but..in past time there was a way to show forum on group's pathway so that a user won't be redirected in another page to see his groups forum with great avantage for usability and navigation, being able to stay in the page group and navigate all.
there was a plugin to do this, called gjforeboard plugin.. i'm not smart enough to update this plugin for kunena but maybe someone is able to! i know it could be interesting for many groupjive users..


thank you!

File Attachment:

File Name: plug_gjfir...nded.zip
File Size:13.34 KB

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

More
15 years 6 months ago #71649 by sorema
ok.. working a bit i've been able to integrate this.
now it is possible to visualize latest forum post INSIDE groupjive group mainpage.
attached you have the modded plugin. install and publish it.
there is also an hack to be added on groupjive.func.php file in com_groupjive folder
also attached. the hack is //serena commented so it can be checked if you want ;)

ad this point you should be able to integrate via backend groupjive, create group forums and visualize latest posts in group.

there is a second part of the hack..i need help here as i can't understand what's wrong.
check readme file in order to include a group description header in kunena-grouprestricted forum for a better navigation. at this point i'm not able to make it work:
on kunena.php file find
Code:
require_once (JPATH_COMPONENT . DS . 'class.kunena.php');
add immediately after
Code:
// this line integrates GroupJive include_once (JPATH_ROOT . '/components/com_comprofiler/plugin/user/plug_gjfireboardextended/showgroup.php');

now you'll have a fatal error.
Fatal error: Call to a member function loadObjectList() on a non-object in /var/www/il-dono.org/httpdocs/components/com_comprofiler/plugin/user/plug_gjfireboardextended/showgroup.php


how to solve? if someone is able to do, we got a great hack! ;)

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

More
15 years 6 months ago - 15 years 6 months ago #71650 by sorema
missing groupjive func.php unzip and overwrite.
Last edit: 15 years 6 months ago by sorema.

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

More
15 years 5 months ago #71946 by sorema
problem solved. forum posts correctly displaying inside group mainpage. now working to display forum even if in parent cat.

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

More
15 years 5 months ago #71948 by sorema
modify query in goupjive func.php this way:

find:
Code:
$query="SELECT * FROM #__".$prefix."_messages " . "WHERE catid='".$categoryid."' ORDER BY time DESC LIMIT " . $fireboard_count;

change to:

Code:
$query="SELECT DISTINCT a.id,a.catid,a.name,a.userid,a.subject,a.catid,a.time,b.parent FROM #__".$prefix."_messages as a INNER JOIN #__".$prefix."_categories as b " . "WHERE a.catid='".$categoryid."' " . "AND a.catid=b.id " . "OR b.parent='".$categoryid."' ORDER BY time DESC LIMIT " . $fireboard_count;

it works great.

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

Time to create page: 0.234 seconds