Page 1 of 1
Looking back - Site Activity
Posted: 24 Apr 2025, 11:00
by Stoker
Well, looking back can be fun.
Remembering when we had a lot of activity here
2010 was our most active year with
2477 topics,
18399 posts and
5110 user registrations
March 2010 was our most active month with
495 topics,
1336 posts and
363 user registrations
Statistics from oxpus basic_stats updated by dmzx
Unfortunately with no permissions to set, only founder can view the statistics
Screenies:
Looking back - Site Activity
Posted: 02 Jul 2025, 08:07
by Stoker
If any of you want to give access to normal users (registered and logged in!
Open: /ext/oxpus/basicstats/event/main_listener.php
Find: if ($this->user->data['user_type'] == USER_FOUNDER)
Replace with: if ($this->user->data['user_id'] != ANONYMOUS && $this->user->data['user_type'] != 2)
Open: /ext/oxpus/basicstats/controller/main.php
Find: if ($this->user->data['user_type'] <> USER_FOUNDER)
Replace with: if ($this->user->data['user_id'] == ANONYMOUS || $this->user->data['user_type'] == 2)
Looking back - Site Activity
Posted: 02 Jul 2025, 14:48
by flumsi
If I only want to grant access to admins and moderators, what would this look like?
main_listener.php:
Code: Select all
if (in_array(4, $this->user->data['group_ids']) || in_array(5, $this->user->data['group_ids']))
main.php:
Code: Select all
if (!in_array(4, $this->user->data['group_ids']) && !in_array(5, $this->user->data['group_ids']))
Would this work?
Looking back - Site Activity
Posted: 02 Jul 2025, 16:28
by Steve
$this->auth->acl_gets('a_', 'm_')
$this->auth->acl_get('a_')
$this->auth->acl_get('m_')
Looking back - Site Activity
Posted: 02 Jul 2025, 19:31
by deninho32
Nice to see this one working again! The old version stopped working last year or so.
112.000 posts in 2025 and still counting!