Server IP : 104.21.38.3 / Your IP : 172.70.208.37 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/lapma.in/phpMyAdmin/js/ |
Upload File : |
<?php declare(strict_types=1); use PhpMyAdmin\Common; use PhpMyAdmin\Controllers\JavaScriptMessagesController; use PhpMyAdmin\OutputBuffering; /** @psalm-suppress InvalidGlobal */ global $containerBuilder; if (! defined('ROOT_PATH')) { // phpcs:disable PSR1.Files.SideEffects define('ROOT_PATH', dirname(__DIR__) . DIRECTORY_SEPARATOR); // phpcs:enable } if (PHP_VERSION_ID < 70205) { die('<p>PHP 7.2.5+ is required.</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'); } // phpcs:disable PSR1.Files.SideEffects define('PHPMYADMIN', true); // phpcs:enable 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('..'); // Send correct type. header('Content-Type: text/javascript; charset=UTF-8'); // Cache output in client - the nocache query parameter makes sure that this file is reloaded when config changes. header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 3600) . ' GMT'); $isMinimumCommon = true; // phpcs:disable PSR1.Files.SideEffects define('PMA_PATH_TO_BASEDIR', '../'); define('PMA_NO_SESSION', true); // phpcs:enable Common::run(); $buffer = OutputBuffering::getInstance(); $buffer->start(); register_shutdown_function(static function (): void { echo OutputBuffering::getInstance()->getContents(); }); /** @var JavaScriptMessagesController $controller */ $controller = $containerBuilder->get(JavaScriptMessagesController::class); $controller();