- Posts: 13
- 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.
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 ItemIDs not respected, resulting in loss of module. Now with Steps posted to Confirm bug
- rogerdavis
-
Topic Author
- Offline
- New Member
-
Please Log in or Create an account to join the conversation.
How did you create this RSS feed? I'm still trying to understand how Kunena has affected the display. I've created an RSS feed, set the parameters to display on all forum pages and the feed appears on all forum pages. I'm not sure if it's a Kunena problem.
rogerdavis wrote:
I'm sorry, I don't understand the problem as you've worded it. The "forums are ... a category of forums" :S You can "link to a category of forums", yes (I suppose you can), but how are you doing this? Your further reference to the "links inside the forum" pointing to the "main forum link" - what links are these? :blink: I'm lost.The forums at www.mentalhealthpractitioners.com/index....unc=listcat&catid=84 are simply a category of forums.. You can link to a category of Forums. And when you do, each menu item gets its own Item ID. But................the links inside the forum itself still reflect the main forum link. The links inside the forum need to reflect the Item Id associated with the menu item that links to the cagegories.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
- rogerdavis
-
Topic Author
- Offline
- New Member
-
- Posts: 13
- Thank you received: 0
Anyway, my purpose was to build a little portal for each area of mental disorders. The Anxiety Disorders are one such little portal. I'm a psychologist, and I want this to be my community site.
Anyway, I created a forum at the top and linked that to Kunena. See the forum link. Next, I copied the link for each category of forums and pasted it in as an external link. That link has a catid in it that tells Kunena which category to display.
I thought it would be okay, since I thought Kunena would test the URL for an ItemID, and use that ItemID preferentially to the item for the main forum, thereby allowing users to create little portals like this.
But it doesn't, and unless I can work this out somehow, I'd have to give up on Kunena and see if I can do this by bridging PHPBB, which I don't want to do.
Roger
PS. Check out the layout on my community builder profile at www.mentalhealthpractitioners.com/index....=userProfile&user=62 I thought that was sweet.
Please Log in or Create an account to join the conversation.
- rogerdavis
-
Topic Author
- Offline
- New Member
-
- Posts: 13
- Thank you received: 0
Line 36 in class.kunena.php is:
$Itemid = intval(mosGetParam($_REQUEST, 'Itemid'));
So this is where Kunena is getting the Itemid from the URL. However, whatever happens in this line is irrelevant, since the next line is
if (!defined("KUNENA_COMPONENT_ITEMID")) {
KUNENA_COMPONENT_ITEMID isn't defined yet in code, so the Itemid from the URL is immediately overridden.
The solution is to add these lines immediately below line 36:
if ($Itemid) {
define("KUNENA_COMPONENT_ITEMID", (int)$Itemid);
define("KUNENA_COMPONENT_ITEMID_SUFFIX", "&Itemid=" . KUNENA_COMPONENT_ITEMID);
}
Now I have my modules again, as they were assigned to links to Kunena categories of forums. You can now see that all the links internal to the Kunena board inherit their ItemID from the current menu item. Yay!! Woohooo!!!
For me, this is huge.
Roger
Please Log in or Create an account to join the conversation.
The URL you gave us before ( www.mentalhealthpractitioners.com/index....unc=listcat&catid=84 ) results in a page that displays the aberrant RSS feed. How do your users get to that URL?
rogerdavis wrote
The "Forums" link, located at the top of your website's pages, has as its target a different URL ( www.mentalhealthpractitioners.com/index....om_kunena&Itemid=415 ). The resultant target URL does not have an RSS feed! Why is there a difference between the URL you gave us and the URL from the "Forums" link I've just mentioned.I created a forum at the top and linked that to Kunena. See the forum link.
rogerdavis wrote
You copied and pasted links where? Why bother doing that when your categories are already linked to discussion topics. Where can I see an example what you did? I think you've overcomplicated the requirement.Next, I copied the link for each category of forums and pasted it in as an external link. That link has a catid in it that tells Kunena which category to display.
I thought it would be okay, since I thought Kunena would test the URL for an ItemID, and use that ItemID preferentially to the item for the main forum, thereby allowing users to create little portals like this.
My suspicion is that you have two so-called "forums" modules: one of them displays the RSS feed, the other doesn't. When your users access the module that contains the RSS feed, the links contained on that page reference the other module. Does that make sense?
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.