this won't work because php uses str_replace function on it, which only replaces text and does not make any calculations here
if you are aware of changing your ./index.php file you may also try runing this query
UPDATE phpbb_config set `config_value` = '1000' where `config_name` = 'num_users'
If you only care about the number of users (and not about their nicknames displayed in the "Identified users" line) then go to ./includes/functions.php and look around line 4139 which looks like
$online_users['total_online'] = $online_users['guests_online'] + $online_users['visible_online'] +...
Actually if you don't need to have those users in database and you only want to change the displayed number in the mainpage then
go to your index.php file and look around line 120 which looks like:
'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], $total_users),
and change to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.