Development > Fixed or Bogus Bugs

Who's Online block

<< < (2/3) > >>

AngelinaBelle:
You can find this mod at simplemachines.org.  Search the mods for "Users Online Today"

DollarSRV:
Ok thanks.

Divecall:
Im using SMF RC5 and SP 2.3.3 and i have this mod installed.

unfortunately, the members online today are not displayed (Only in SP-Block, in my board all is looking well...)

What can i do?

moal:
I have the same problem.  :( White still no advice? :nervous-happy:

phantomm:
Open: ./Sources/PortalBlocks.php:

--- Code: (Find) --- if ($online_today && file_exists($sourcedir . '/Subs-MembersOnlineToday.php'))
{
require_once($sourcedir . '/Subs-MembersOnlineToday.php');

$membersOnlineTodayOptions = array(
'sort' => 'login_time',
'reverse_sort' => true,
'period' => 'current_day',
'canview' => 'registered',
);

$stats += getMembersOnlineTodayStats($membersOnlineTodayOptions);

--- End code ---

--- Code: (Replace with) ---
if ($online_today && file_exists($sourcedir . '/Subs-UsersOnlineToday.php'))
{
require_once($sourcedir . '/Subs-UsersOnlineToday.php');

$membersOnlineTodayOptions = array(
'sort' => 'login_time',
'reverse_sort' => true,
'period' => 'current_day',
'canview' => 'registered',
);

$stats += getUsersOnlineTodayStats($membersOnlineTodayOptions);

--- End code ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version