uawdijnntqw1x1x1
IP : 216.73.216.137
Hostname : xhost1.intravision.ru
Kernel : Linux xhost1.intravision.ru 3.16.0-7-amd64 #1 SMP Debian 3.16.59-1 (2018-10-03) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
lib
/
.
/
nfs
/
..
/
python-support
/
..
/
..
/
share
/
python
/
..
/
java
/
..
/
bug
/
..
/
_phpmyadmin
/
server_status.php
/
/
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * object the server status page: processes, connections and traffic * * @package PhpMyAdmin */ require_once 'libraries/common.inc.php'; require_once 'libraries/server_common.inc.php'; require_once 'libraries/ServerStatusData.class.php'; require_once 'libraries/server_status.lib.php'; /** * Replication library */ if (PMA_DRIZZLE) { $server_master_status = false; $server_slave_status = false; } else { include_once 'libraries/replication.inc.php'; include_once 'libraries/replication_gui.lib.php'; } $ServerStatusData = new PMA_ServerStatusData(); /** * Kills a selected process */ if (! empty($_REQUEST['kill'])) { if ($GLOBALS['dbi']->tryQuery('KILL ' . $_REQUEST['kill'] . ';')) { $message = PMA_Message::success(__('Thread %s was successfully killed.')); } else { $message = PMA_Message::error( __( 'phpMyAdmin was unable to kill thread %s.' . ' It probably has already been closed.' ) ); } $message->addParam($_REQUEST['kill']); } /** * start output */ $response = PMA_Response::getInstance(); $response->addHTML('<div>'); $response->addHTML($ServerStatusData->getMenuHtml()); $response->addHTML(PMA_getHtmlForServerStatus($ServerStatusData)); $response->addHTML('</div>'); exit; ?>
/var/lib/./nfs/../python-support/../../share/python/../java/../bug/../_phpmyadmin/server_status.php