- Posts: 5
- Thank you received: 0
Kunena 6.3.8 Released
The Kunena team has announce the arrival of Kunena 6.3.8 [K 6.3.8] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x/5.2.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 and issues discovered during the last development stages of K 6.3
Note: Please go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated.
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.
Question How do I disable Kunena userlist feature?
- Dontviolate Myprivacy
- Topic Author
- Offline
- New Member
I´ve been searchin for this but didn´t found a solution.
Even when using userlist as the search word this forum freezes.
What I found out is this:
As privacy is a very important thing to most people, I can remove the link for the userlist in Kunena 1.7.
Still the word userlist remains.
I wonder why as it´s not relevant information and it isn´t a link anymore?
But beside that, if you are a bit familiar with tools like a forum, it is quite easy to add the additional path to the userlist ( www.mysite.yes/index.php/component/kunena/userlist ), and still see all the registered users.
Why isn´t this addressed in the software?
Or did I overlooked the settings to accomplish this?
Please Log in or Create an account to join the conversation.
Thank you for reporting the problem with searching the forum for the term "userlist". I have asked the team to investigate why this problem has occurred.
I think you are asking how to disable the userlist feature. Is this what you want to know?
Try this: Forum Configuration » Plug-ins » Userlist » Users Per Page = 0
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.
- Dontviolate Myprivacy
- Topic Author
- Offline
- New Member
- Posts: 5
- Thank you received: 0
Great to hear that the bug is addressed in K 2.0.
I didn´t found that version for downloading by the way.
Setting that value to 0 doesn´t do much in the brief testing I all ready did.
Although I can code the files to do what I think is good for privacy, it seams to me that such a `feature` is a basic one in a forum.
Please Log in or Create an account to join the conversation.
K 2.0 is not publicly available. You can search for K 2.0 to find out more about this upcoming release.Dontviolate Myprivacy wrote: Great to hear that the [search] bug is addressed in K 2.0.
I didn´t found that version for downloading by the way.
I have to say that I asked the question and that was the advice I received. I will direct my colleagues to this topic and seek their direct input.Dontviolate Myprivacy wrote: Setting that value to 0 doesn´t do much in the brief testing I all ready did.
I agree with you. The ability to turn on/off the userlist feature should be easily configurable.Dontviolate Myprivacy wrote: Although I can code the files to do what I think is good for privacy, it seams to me that such a `feature` is a basic one in a forum.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
- Dontviolate Myprivacy
- Topic Author
- Offline
- New Member
- Posts: 5
- Thank you received: 0
But the solution is here:
Use at your own risk!!!
In Kunena configuration go to the tab "integration" set "profile and userlists" to none.
Than you´ll need to alter 2 files.
And please be sure to backup!!!
To get rid of the unneccessary userlist without the link:
Kunena version 1.7.2
In file: components\com_kunena\lib\kunena.link.class.php
Lines 269 till 275
function GetUserlistLink($action, $name, $rel = 'nofollow', $class = '') {
$link = self::GetUserlistURL ( $action );
if ($link) {
return self::GetHrefLink ( $link, $name, '', $rel, $class );
}
return $name;
}
Change line 274 from:
return $name;
to:
return;
And for the denial of the userlist by url manipulation:
Kunena version 1.7.2
In file: components\com_kunena\funcs\userlist.php
Line 36
if( !$this->isAllowed() ) return false;
change to:
if( ( !$this->isAllowed() ) || ($this->config->integration_profile == 'none') ) return false;
Please Log in or Create an account to join the conversation.
Any help is appreciated, Thanks.
My bad, thought I was in the FAQ, MOD pls. move post...
Please Log in or Create an account to join the conversation.