Kunena 6.3.0 released

The Kunena team has announce the arrival of Kunena 6.3.0 [K 6.3.0] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x. This version addresses most of the issues that were discovered in K 6.2 and issues discovered during the last development stages of K 6.3

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question thank yous max number does not work

More
12 years 8 months ago - 12 years 8 months ago #1 by drlovecat
Hi All,
I'm input numbers of 20 in that field, but it's still display only 10 usernames like previously version.

This message contains confidential information

Database collation check: The collation of your table fields are correct

Legacy mode: Disabled | Joomla! SEF: Enabled | Joomla! SEF rewrite: Enabled | FTP layer: Disabled |

This message contains confidential information
htaccess: Exists | PHP environment: Max execution time: 30 seconds | Max execution memory: 128M | Max file upload: 16M

This message contains confidential information

Joomla default template details : jp_medium_j1.5 | author: PixelPraise | version: 1.0.4 | creationdate: 04/21/10

Kunena default template details : Blue Eagle (default) | author: Kunena Team | version: 1.6.5 | creationdate: 2011-07-27

Kunena version detailled: Installed version: 1.6.5 | Build: 5005 | Version name: Babel | Kunena detailled configuration:

Warning: Spoiler!

Third-party components: Jomsocial 2.2.4

Third-party SEF components: sh404sef: The file doesn't exist sh404sef.xml !

Plugins: System - Mootools Upgrade: Disabled | System - Mootools12: Disabled | My Kunena Forum Menu 1.6.4 | Kunena Groups 1.6.4

Modules: Kunena Latest 1.6.4

Last edit: 12 years 8 months ago by drlovecat.

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

More
12 years 8 months ago - 12 years 8 months ago #2 by sozzled
I believe we are discussing Forum Configuration » Users » User Related » Number of thank yous to display

I think this setting controls how many "thank you" posts to display when you view a Kunena user profile, not when you view a thread. I could be very wrong. Perhaps someone else can confirm whether this is the case?
Last edit: 12 years 8 months ago by sozzled.
The following user(s) said Thank You: drlovecat

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

More
12 years 8 months ago #3 by drlovecat
Hi All,

I meant the list of users who's said thank you under the signature area :)

As I test by 14 users with yellow shade. (I have been set to 20 in the forum configuration)


It's still show 10persons on live site (K1.6.5)

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

More
12 years 8 months ago #4 by xillibit
I will check it later

I don't provide support by PM, because this can be useful for someone else.
The following user(s) said Thank You: drlovecat

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

More
12 years 8 months ago #5 by drlovecat
thanks.
this bug , i also report at githubs too.
Nothing perfectly but i think kunena will be better as you wish.


;)

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

More
12 years 8 months ago #6 by xillibit
I'am not able to reproduce the issue, when i set 5 users maximum in thank you i see 5 users

I don't provide support by PM, because this can be useful for someone else.

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

More
12 years 8 months ago #7 by sozzled
Confirmed. The setting works with less than 10 but not greater than 10. This needs further investigation. Thanks for reporting this. :)

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

More
12 years 8 months ago #8 by xillibit
I have found where is the issue, open the file \administrator\components\com_kunena\libraries\tables\kunenathankyou.php at line 175 replace this :
Code:
function getUsers($pid, $named = '', $limit = 10) { // TODO: accept list of users $name = 'username'; if ($named === 'name') $name = 'name AS username'; $query = "SELECT u.{$name}, u.id FROM #__users AS u LEFT JOIN {$this->_tbl} AS s ON u.id = s.userid WHERE s.postid={$this->_db->quote($pid)}"; $this->_db->setQuery ( $query, 0, $limit ); $res = $this->_db->loadObjectList (); // Check for an error message. if ($this->_db->getErrorNum ()) { $this->setError ( $this->_db->getErrorMsg () ); return false; } return $res; }

by this :
Code:
function getUsers($pid, $named = '') { // TODO: accept list of users $name = 'username'; if ($named === 'name') $name = 'name AS username'; $query = "SELECT u.{$name}, u.id FROM #__users AS u LEFT JOIN {$this->_tbl} AS s ON u.id = s.userid WHERE s.postid={$this->_db->quote($pid)}"; $this->_db->setQuery ( $query, 0 ); $res = $this->_db->loadObjectList (); // Check for an error message. if ($this->_db->getErrorNum ()) { $this->setError ( $this->_db->getErrorMsg () ); return false; } return $res; }

I don't provide support by PM, because this can be useful for someone else.
The following user(s) said Thank You: drlovecat

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

More
12 years 8 months ago #9 by drlovecat

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

More
12 years 8 months ago #10 by xillibit
B)

I don't provide support by PM, because this can be useful for someone else.

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

Time to create page: 0.563 seconds