Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.216.8.36
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
libraries /
Delete
Unzip
Name
Size
Permission
Date
Action
cache
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
certs
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
classes
[ DIR ]
drwxr-xr-x
2024-03-13 04:07
advisory_rules_generic.php
34.35
KB
-rw-r--r--
2021-06-04 04:20
advisory_rules_mysql_before80003.php
6.19
KB
-rw-r--r--
2021-06-04 04:20
common.inc.php
8.46
KB
-rw-r--r--
2021-06-04 04:20
config.default.php
70.13
KB
-rw-r--r--
2021-06-04 04:20
config.values.php
13.2
KB
-rw-r--r--
2021-06-04 04:20
language_stats.inc.php
1.61
KB
-rw-r--r--
2021-06-04 04:20
routes.php
23.65
KB
-rw-r--r--
2021-06-04 04:20
services.php
6.76
KB
-rw-r--r--
2021-06-04 04:20
services_controllers.php
36.88
KB
-rw-r--r--
2021-06-04 04:20
services_loader.php
1.58
KB
-rw-r--r--
2021-06-04 04:20
vendor_config.php
2.17
KB
-rw-r--r--
2022-01-20 15:22
Save
Rename
<?php /** * File for vendor customization, you can change here paths or some behaviour, * which vendors such as Linux distributions might want to change. * * For changing this file you should know what you are doing. For this reason * options here are not part of normal configuration. */ declare(strict_types=1); // phpcs:disable PSR1.Files.SideEffects if (! defined('PHPMYADMIN')) { exit; } // phpcs:enable /** * Path to vendor autoload file. Useful when you want to * have have vendor dependencies somewhere else. */ define('AUTOLOAD_FILE', './autoload.php'); /** * Directory where cache files are stored. */ define('TEMP_DIR', '/var/lib/phpmyadmin/tmp/'); /** * Path to changelog file, can be gzip compressed. Useful when you want to * have documentation somewhere else, eg. /usr/share/doc. */ define('CHANGELOG_FILE', '/usr/share/doc/phpmyadmin/changelog.gz'); /** * Path to license file. Useful when you want to have documentation somewhere * else, eg. /usr/share/doc. */ define('LICENSE_FILE', '/usr/share/doc/phpmyadmin/copyright'); /** * Directory where SQL scripts to create/upgrade configuration storage reside. */ define('SQL_DIR', ROOT_PATH . 'sql' . DIRECTORY_SEPARATOR); /** * Directory where configuration files are stored. * It is not used directly in code, just a convenient * define used further in this file. */ define('CONFIG_DIR', '/etc/phpmyadmin/'); /** * Filename of a configuration file. */ define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php'); /** * Filename of custom header file. */ define('CUSTOM_HEADER_FILE', CONFIG_DIR . 'config.header.inc.php'); /** * Filename of custom footer file. */ define('CUSTOM_FOOTER_FILE', CONFIG_DIR . 'config.footer.inc.php'); /** * Default value for check for version upgrades. */ define('VERSION_CHECK_DEFAULT', false); /** * Path to files with compiled locales (*.mo) */ define('LOCALE_PATH', ROOT_PATH . 'locale' . DIRECTORY_SEPARATOR); /** * Define the cache directory for routing cache an other cache files */ define('CACHE_DIR', ROOT_PATH . 'libraries' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR); /** * Suffix to add to the phpMyAdmin version */ define('VERSION_SUFFIX', 'deb5ubuntu1');