3.1 & 3.2 Extensions Database 3.1 / 3.2 ⇒ System Info
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: System Info
Your version 3.3.8 is miles out of date.
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

-
- Users
- Posts: 53
- Joined: 03 Nov 2020, 15:12
Re: System Info
Give the modded system info
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
-
- Users
- Posts: 73
- Joined: 28 Dec 2014, 01:59
Re: System Info
HarveyWNvm LLC. wrote: 18 Jun 2023, 12:49 Give the modded system info
Screenshot_20230618-134541.jpg

-
- Users
- Posts: 53
- Joined: 03 Nov 2020, 15:12
Re: System Info
I would like to know if the extension can support the new version of phpBB 3.3.11? Because when I see that it stops my site completely
-
- Donator
- Posts: 137
- Joined: 19 Aug 2020, 12:54
Re: System Info
In ext/dmzx/systeminfo/config open services.yml file and replace by this
Code: Select all
services:
dmzx.systeminfo.listener:
class: dmzx\systeminfo\event\listener
arguments:
- '@config'
- '@template'
tags:
- { name: event.listener }
-
- Users
- Posts: 117
- Joined: 04 Feb 2021, 23:54
Re: System Info
Php 8.2 and 8.3
Phpbb 3.3.11
MySQL(i) 10.6.15-MariaDB-1:10.6.15
Phpbb 3.3.11
MySQL(i) 10.6.15-MariaDB-1:10.6.15
Code: Select all
Fatal error: Uncaught Error: Call to undefined function dmzx\systeminfo\event\shell_exec() in /customers/5/6/e/myarea51secrets.be/httpd.www/ext/dmzx/systeminfo/event/listener.php:43 Stack trace: #0 /customers/5/6/e/myarea51secrets.be/httpd.www/vendor/symfony/event-dispatcher/EventDispatcher.php(214): dmzx\systeminfo\event\listener->main(Object(phpbb\event\data), 'core.index_modi...', Object(phpbb\event\dispatcher)) #1 /customers/5/6/e/myarea51secrets.be/httpd.www/vendor/symfony/event-dispatcher/EventDispatcher.php(44): Symfony\Component\EventDispatcher\EventDispatcher->doDispatch(Array, 'core.index_modi...', Object(phpbb\event\data)) #2 /customers/5/6/e/myarea51secrets.be/httpd.www/phpbb/event/dispatcher.php(62): Symfony\Component\EventDispatcher\EventDispatcher->dispatch('core.index_modi...', Object(phpbb\event\data)) #3 /customers/5/6/e/myarea51secrets.be/httpd.www/phpbb/event/dispatcher.php(46): phpbb\event\dispatcher->dispatch('core.index_modi...', Object(phpbb\event\data)) #4 /customers/5/6/e/myarea51secrets.be/httpd.www/index.php(245): phpbb\event\dispatcher->trigger_event('core.index_modi...', Array) #5 {main} thrown in /customers/5/6/e/myarea51secrets.be/httpd.www/ext/dmzx/systeminfo/event/listener.php on line 43
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: System Info
You windows or you host wont allow the call to $uptimeindex = shell_exec("cut -d. -f1 /proc/uptime"); <<<< a linux file.
-
- Users
- Posts: 117
- Joined: 04 Feb 2021, 23:54
Re: System Info
Changed to VPS. Works nowmartin wrote: 28 Dec 2023, 01:15 You windows or you host wont allow the call to $uptimeindex = shell_exec("cut -d. -f1 /proc/uptime"); <<<< a linux file.

-
- Users
- Posts: 53
- Joined: 03 Nov 2020, 15:12
Re: System Info
People just file for a new version to make the system work
-
- Users
- Posts: 15
- Joined: 23 Feb 2020, 19:17
Re: System Info
Hi,
until yesterday, the extension of everything worked correctly, today it ceased to display the use of RAM memory.
On the server or in PHBB, I did not make any changes or my own adjustments.
Ubuntu 20.04.6 LTS x86_64(Py3.12.3)
Apache 2.4.58
PHP 8.3.7
MySQL(i) 10.7.3-MariaDB
phpBB 3.3.12
System Info 1.0.2
Thank you for your info and help.
until yesterday, the extension of everything worked correctly, today it ceased to display the use of RAM memory.
On the server or in PHBB, I did not make any changes or my own adjustments.
Ubuntu 20.04.6 LTS x86_64(Py3.12.3)
Apache 2.4.58
PHP 8.3.7
MySQL(i) 10.7.3-MariaDB
phpBB 3.3.12
System Info 1.0.2
Thank you for your info and help.
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
Let's Go CommAndeR
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: System Info
It is a server issue not ext issue.
-
- VIP
- Posts: 1157
- Joined: 14 Oct 2014, 19:01
Re: System Info
I have an issue with the templates on my site messing up for guests on both styles. The .wrap </div> closes after the stats.
I'm looking in the extensions to see which one is causing that. It's not this ext doing it but I did find a </p> out of place.
ext/dmzx/systeminfo/styles/prosilver/template/event/index_body_stat_blocks_after.html
That <p> starts after the first <div> so the closing </p> needs to end after the second to last </div> like shown above.
You have that closing </p> after the last </div>
I'm looking in the extensions to see which one is causing that. It's not this ext doing it but I did find a </p> out of place.
ext/dmzx/systeminfo/styles/prosilver/template/event/index_body_stat_blocks_after.html
Code: Select all
<div class="toggleinfo"><p>{{ lang('SYSTEM_NAME') }} <strong>{{ PHP_OS }}</strong> • {{ lang('BOARD_VERSION') ~ lang('COLON') }} <strong>{{ BOARD_VERSION }}</strong><br>
......
......
......
</div></p>
</div>
{% endif %}
You have that closing </p> after the last </div>
-
- Founder
- Posts: 6466
- Joined: 13 Jan 2014, 21:45
Re: System Info
Think its needed for the toggle, will check on itSniper_E wrote: 05 Dec 2024, 03:57 I have an issue with the templates on my site messing up for guests on both styles. The .wrap </div> closes after the stats.
I'm looking in the extensions to see which one is causing that. It's not this ext doing it but I did find a </p> out of place.
ext/dmzx/systeminfo/styles/prosilver/template/event/index_body_stat_blocks_after.htmlThat <p> starts after the first <div> so the closing </p> needs to end after the second to last </div> like shown above.Code: Select all
<div class="toggleinfo"><p>{{ lang('SYSTEM_NAME') }} <strong>{{ PHP_OS }}</strong> • {{ lang('BOARD_VERSION') ~ lang('COLON') }} <strong>{{ BOARD_VERSION }}</strong><br> ...... ...... ...... </div></p> </div> {% endif %}
You have that closing </p> after the last </div>
