Chit chat, open discussions and beer
Anything that is not support related
Stoker Offline
Site Admin
Posts: 4,561 Joined: 12 May 2008, 21:26
Local time: 07 Sep 2025 07:13
Last active: - Favourite EXT: Forum Goal
Location: Denmark
Contact:
Post
by Stoker » 24 Apr 2025, 11:00
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:
Last edited by
Stoker on 24 Apr 2025, 11:01, edited 1 time in total.
~ The greatest achievement in life is to inspire ~
Regards Stoker
Stoker Offline
Site Admin
Posts: 4,561 Joined: 12 May 2008, 21:26
Local time: 07 Sep 2025 07:13
Last active: - Favourite EXT: Forum Goal
Location: Denmark
Contact:
Post
by Stoker » 02 Jul 2025, 08:07
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)
~ The greatest achievement in life is to inspire ~
Regards Stoker
flumsi Offline
BBCoder III
Posts: 95 Joined: 03 Mar 2025, 10:55
Local time: 07 Sep 2025 07:13
Last active: - Location: Schweiz
Contact:
Post
by flumsi » 02 Jul 2025, 14:48
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?
Steve Offline
Donator
Posts: 1,589 Joined: 04 Mar 2010, 23:10
Local time: 07 Sep 2025 06:13
Last active: - Favourite BBCode: {
Favourite EXT: {
Location: { .
Post
by Steve » 02 Jul 2025, 16:28
$this->auth->acl_gets('a_', 'm_')
$this->auth->acl_get('a_')
$this->auth->acl_get('m_')
stokers bugs: {.23%t>
my bugs: .
deninho32 Offline
BBCoder II
Posts: 18 Joined: 05 Feb 2025, 08:35
Local time: 07 Sep 2025 07:13
Last active: - Location: The Netherlands
Contact:
Post
by deninho32 » 02 Jul 2025, 19:31
Nice to see this one working again! The old version stopped working last year or so.
112.000 posts in 2025 and still counting!