Looking back - Site Activity

Chit chat, open discussions and beer
Anything that is not support related

Looking back - Site Activity

Post 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
basic_stats_bbc.zip

Screenies:
bbc2010.png
bbcmarch2010.png
You do not have the required permissions to view the files attached to this post.
Last edited by Stoker on 24 Apr 2025, 11:01, edited 1 time in total.

Looking back - Site Activity

Post 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

Post 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

Post by Steve »

$this->auth->acl_gets('a_', 'm_')

$this->auth->acl_get('a_')
$this->auth->acl_get('m_')

Looking back - Site Activity

Post 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!
Screenshot 2025-07-02 at 21-30-09 Negentiendertien.nl - Statistics • Monthly Statistics.png
You do not have the required permissions to view the files attached to this post.