Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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

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 kunena 1.6.2 shows total users=0

More
15 years 3 months ago #82483 by sozzled
Is this what you are referring to when you say "users=0"? (see image below):

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

More
15 years 3 months ago #82545 by vladomkd
no, i'm referring to the total users count:

[IMG

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

More
15 years 3 months ago - 15 years 3 months ago #82569 by sozzled
Have you tried the Synchronise Users feature?
Last edit: 15 years 3 months ago by sozzled.

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

More
15 years 3 months ago #82570 by vladomkd
yes, i have tried sync users in various combinations, the total users count remains 0 no matter what i try.

before kunena 1.6.2 a certain number of users was shows (although smaller than the real number), however since kunena 1.6.2 this number is constantly 0.

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

More
15 years 3 months ago - 15 years 3 months ago #82575 by sozzled
I have two suggestions for you:

(1) Go to Synchronize Users; check all 4 checkboxes and then press the Synch button. See if this improves the situation.

(2) You could make a small change to a system plugin that will enable automatic synchronising of users. The file that you would need to change to make this change is ../plugins/system/kunena.php

This is the area of code that you need to look for:
Code:
/* function onAfterStoreUser($user, $isnew, $succes, $msg) { //Don't continue if the user wasn't stored succesfully if (! $succes) { return false; } if (! $isnew) { return true; } // Set the db function $db = JFactory::getDBO (); $db->setQuery ( "INSERT INTO #__kunena_users (userid) VALUES ('" . intval($user ['id']) . "')" ); $db->query (); } */
Remove the first and last lines shown above, that is the line that is

/*

and the other line that is

*/

Save that file and see if it makes a difference to you. Good luck.
Last edit: 15 years 3 months ago by sozzled.

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

More
15 years 3 months ago #82591 by vladomkd
i have tried both suggestions, however the total users count remains the same.

perhaps when a new user registers the total users count will change?

thanks!

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

Time to create page: 0.290 seconds