|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 21.89 GB of 70.42 GB (31.08%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: 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,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
home/
yalagina/
map/
site/
sql_control/
libraries/
- drwxr-sr-x
|
Viewing file: server_common.inc.php (1.28 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * @uses PMA_generate_common_url() * @uses PMA_isSuperuser() * @uses PMA_DBI_select_db() * @uses PMA_DBI_fetch_result() * @uses PMA_DBI_QUERY_STORE * @uses $userlink * @package phpMyAdmin */ if (! defined('PHPMYADMIN')) { exit; }
/** * Gets some core libraries */ require_once './libraries/common.inc.php';
/** * Handles some variables that may have been sent by the calling script * Note: this can be called also from the db panel to get the privileges of * a db, in which case we want to keep displaying the tabs of * the Database panel */ if (empty($viewing_mode)) { $db = $table = ''; }
/** * Set parameters for links */ $url_query = PMA_generate_common_url($db);
/** * Defines the urls to return to in case of error in a sql statement */ $err_url = 'main.php' . $url_query;
/** * Displays the headers */ require_once './libraries/header.inc.php';
/** * @global boolean Checks for superuser privileges */ $is_superuser = PMA_isSuperuser();
// now, select the mysql db if ($is_superuser) { PMA_DBI_select_db('mysql', $userlink); }
/** * @global array binary log files */ $binary_logs = PMA_DBI_fetch_result('SHOW MASTER LOGS', 'Log_name', null, null, PMA_DBI_QUERY_STORE); ?>
|