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
15 years 3 months ago #82483
by sozzled
Blue Eagle vs. Crypsis reference guide
Read my blog and
Replied by sozzled on topic Re: kunena 1.6.2 shows total users=0
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
15 years 3 months ago #82545
by vladomkd
Replied by vladomkd on topic Re: kunena 1.6.2 shows total users=0
Please Log in or Create an account to join the conversation.
15 years 3 months ago - 15 years 3 months ago #82569
by sozzled
Blue Eagle vs. Crypsis reference guide
Read my blog and
Replied by sozzled on topic Re: kunena 1.6.2 shows total users=0
Have you tried the Synchronise Users feature?
Blue Eagle vs. Crypsis reference guide
Read my blog and
Last edit: 15 years 3 months ago by sozzled.
Please Log in or Create an account to join the conversation.
15 years 3 months ago #82570
by vladomkd
Replied by vladomkd on topic Re: kunena 1.6.2 shows total users=0
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.
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.
15 years 3 months ago - 15 years 3 months ago #82575
by sozzled
Blue Eagle vs. Crypsis reference guide
Read my blog and
Replied by sozzled on topic Re: kunena 1.6.2 shows total users=0
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:
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.
(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 ();
}
*/
/*
and the other line that is
*/
Save that file and see if it makes a difference to you. Good luck.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Last edit: 15 years 3 months ago by sozzled.
Please Log in or Create an account to join the conversation.
15 years 3 months ago #82591
by vladomkd
Replied by vladomkd on topic Re: kunena 1.6.2 shows total users=0
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!
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