Server IP : 85.214.239.14 / Your IP : 13.59.5.179 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/wordpress/phpMyAdmin/templates/server/status/processes/ |
Upload File : |
{% extends 'server/status/base.twig' %} {% set active = 'processes' %} {% block content %} <fieldset id="tableFilter"> <legend>{% trans 'Filters' %}</legend> <form action="server_status_processes.php" method="post"> {{ get_hidden_inputs(url_params) }} <input class="btn btn-secondary" type="submit" value="{% trans 'Refresh' %}"> <div class="formelement"> <input type="checkbox" name="showExecuting" id="showExecuting" class="autosubmit"{{ is_checked ? ' checked' }}> <label for="showExecuting"> {% trans 'Show only active' %} </label> </div> </form> </fieldset> {{ server_process_list|raw }} {{ 'Note: Enabling the auto refresh here might cause heavy traffic between the web server and the MySQL server.'|trans|notice }} <div class="tabLinks"> <label> {% trans 'Refresh rate' %}: <select id="id_refreshRate" class="refreshRate" name="refreshRate"> {% for rate in [2, 3, 4, 5, 10, 20, 40, 60, 120, 300, 600, 1200] %} <option value="{{ rate }}"{{ rate == 5 ? ' selected' }}> {% if rate < 60 %} {% if rate == 1 %} {{ '%d second'|trans|format(rate) }} {% else %} {{ '%d seconds'|trans|format(rate) }} {% endif %} {% else %} {% if rate / 60 == 1 %} {{ '%d minute'|trans|format(rate / 60) }} {% else %} {{ '%d minutes'|trans|format(rate / 60) }} {% endif %} {% endif %} </option> {% endfor %} </select> </label> <a id="toggleRefresh" href="#"> {{ get_image('play') }} {% trans 'Start auto refresh' %} </a> </div> {% endblock %}