Kunena 7.0.2 Released

The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/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

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 Kunena latest posts module - BACKPORTED FOR JOOMLA 1.0

More
16 years 10 months ago #12200 by roland76
Replied by roland76 on topic Re:What is
Hello,

could you send me a link to you site and a tempory backend-account (via Private Message, of course), please. Then I can have a look...
The topic has been locked.
More
16 years 10 months ago #12366 by Edi
Replied by Edi on topic Re:What is
1) "Show Latest Posts" works, when "Public Access" is set to "Everybody" (it was set to "Registered").

2) RSS-Feed: Could it by a template problem? It works with the clean installation with the default template, the migrated board gives in IE the error message "Feeds with DTDs are not supported."
The topic has been locked.
More
16 years 10 months ago #12383 by JanTenner
Just had the same problem and installed this Module:
www.bestofjoomla.com/component/option,co...nk_id,109/Itemid,95/
... then it worked all fine.
The topic has been locked.
More
16 years 10 months ago - 16 years 10 months ago #12445 by fector
I have problem with mod_kunenalatest with kunena 1.0.9:

Notice: Undefined offset: 0 in ../modules/mod_kunena_latest/mod_kunena_latest.php on line 72

Notice: Trying to get property of non-object in ../html/modules/mod_kunena_latest/mod_kunena_latest.php on line 72

in 1.0.8 works fine... how can i solve?? ty
Last edit: 16 years 10 months ago by fector.
The topic has been locked.
More
16 years 10 months ago #12525 by JoniJnm
Hi fector, replace
Code:
$database->setQuery( "SELECT id FROM #__menu WHERE link LIKE '%".$componentname."%'" ); $rows = $database->loadObjectList(); $forumitemid = $rows[0]->id; $database->setQuery( "SELECT id FROM #__menu WHERE link LIKE '%com_comprofiler%'" ); $rows = $database->loadObjectList(); $cb_itemid = $rows[0]->id;
By
Code:
$database->setQuery( "SELECT id FROM #__menu WHERE link LIKE '%com_kunena%' LIMIT 1" ); $row = null; $database->loadObject($row); if ($row) { $forumitemid = $row->id; } $database->setQuery( "SELECT id FROM #__menu WHERE link LIKE '%com_comprofiler%' LIMIT 1" ); $row = null; $database->loadObject($row); if ($row) { $cb_itemid = $row->id; }
The topic has been locked.
More
16 years 10 months ago - 16 years 10 months ago #12577 by sozzled
Last edit: 16 years 10 months ago by sozzled.
The topic has been locked.
Time to create page: 0.474 seconds