- Posts: 337
- Thank you received: 6
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.
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
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...
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.
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."
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.
16 years 10 months ago #12383
by JanTenner
Replied by JanTenner on topic Re:Problems mod_kunenalatest & 1.0.9
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.
www.bestofjoomla.com/component/option,co...nk_id,109/Itemid,95/
... then it worked all fine.
The topic has been locked.
16 years 10 months ago - 16 years 10 months ago #12445
by fector
Replied by fector on topic Re:Problems mod_kunenalatest & 1.0.9
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
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.
16 years 10 months ago #12525
by JoniJnm
Replied by JoniJnm on topic Re:Problems mod_kunenalatest & 1.0.9
Hi fector, replace
By
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;
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.
16 years 10 months ago - 16 years 10 months ago #12577
by sozzled
Blue Eagle vs. Crypsis reference guide
Read my blog and
Replied by sozzled on topic Re:Problems mod_kunenalatest & 1.0.9
This problem is solved!
see
[SOLVED] 1.09 - Fatal error: Class 'CKunenaCBProfile' not found in ....... Line 175
Download and install latest version of mod_kunenalatest.
Download and install latest version of mod_kunenalatest.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Last edit: 16 years 10 months ago by sozzled.
The topic has been locked.
Time to create page: 0.474 seconds