Server IP : 51.89.169.208 / Your IP : 18.119.126.168 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/yellowleaf/www/phpMyAdmin/setup/lib/ |
Upload File : |
<?php declare(strict_types=1); use PhpMyAdmin\Common; use PhpMyAdmin\Config\ConfigFile; use PhpMyAdmin\DatabaseInterface; if (PHP_VERSION_ID < 70205) { die('<p>PHP 7.2.5+ is required.</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'); } if (! defined('PHPMYADMIN')) { exit; } require_once ROOT_PATH . 'libraries/constants.php'; /** * Activate autoloader */ if (! @is_readable(AUTOLOAD_FILE)) { die( '<p>File <samp>' . AUTOLOAD_FILE . '</samp> missing or not readable.</p>' . '<p>Most likely you did not run Composer to ' . '<a href="https://docs.phpmyadmin.net/en/latest/setup.html#installing-from-git">' . 'install library files</a>.</p>' ); } require AUTOLOAD_FILE; chdir('..'); $isMinimumCommon = true; Common::run(); // use default error handler restore_error_handler(); // Save current language in a cookie, required since we set $isMinimumCommon $GLOBALS['config']->setCookie('pma_lang', (string) $GLOBALS['lang']); $GLOBALS['config']->set('is_setup', true); $GLOBALS['ConfigFile'] = new ConfigFile(); $GLOBALS['ConfigFile']->setPersistKeys( [ 'DefaultLang', 'ServerDefault', 'UploadDir', 'SaveDir', 'Servers/1/verbose', 'Servers/1/host', 'Servers/1/port', 'Servers/1/socket', 'Servers/1/auth_type', 'Servers/1/user', 'Servers/1/password', ] ); $GLOBALS['dbi'] = DatabaseInterface::load(); // allows for redirection even after sending some data ob_start();