Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
phpmyadmin /
[ HOME SHELL ]
Name
Size
Permission
Action
doc
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libraries
[ DIR ]
drwxr-xr-x
locale
[ DIR ]
drwxr-xr-x
setup
[ DIR ]
drwxr-xr-x
sql
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
themes
[ DIR ]
drwxr-xr-x
tmp
[ DIR ]
drwxrwxr-x
vendor
[ DIR ]
drwxr-xr-x
.rtlcssrc.json
20
B
-rw-r--r--
babel.config.json
69
B
-rw-r--r--
ChangeLog
69.34
KB
-rw-r--r--
composer.json
5.2
KB
-rw-r--r--
composer.lock
298.68
KB
-rw-r--r--
config.inc.php
5.28
KB
-rw-r--r--
config.sample.inc.php
4.7
KB
-rw-r--r--
CONTRIBUTING.md
2.53
KB
-rw-r--r--
favicon.ico
21.96
KB
-rw-r--r--
index.php
1.05
KB
-rw-r--r--
LICENSE
17.67
KB
-rw-r--r--
package.json
2.72
KB
-rw-r--r--
README
1.48
KB
-rw-r--r--
RELEASE-DATE-5.2.1
29
B
-rw-r--r--
robots.txt
26
B
-rw-r--r--
show_config_errors.php
1.13
KB
-rw-r--r--
url.php
965
B
-rw-r--r--
yarn.lock
247.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : show_config_errors.php
<?php /** * Simple wrapper just to enable error reporting and include config */ declare(strict_types=1); if (! defined('ROOT_PATH')) { // phpcs:disable PSR1.Files.SideEffects define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR); // phpcs:enable } // rfc2616 - Section 14.21 header('Expires: ' . gmdate(DATE_RFC1123)); // HTTP/1.1 header('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); header('Pragma: no-cache'); // HTTP/1.0 // test case: exporting a database into a .gz file with Safari // would produce files not having the current time // (added this header for Safari but should not harm other browsers) header('Last-Modified: ' . gmdate(DATE_RFC1123)); header('Content-Type: text/html; charset=utf-8'); // phpcs:disable PSR1.Files.SideEffects define('PHPMYADMIN', true); // phpcs:enable require ROOT_PATH . 'libraries/constants.php'; // issue #16256 - This only works with php 8.0+ if (function_exists('error_reporting')) { error_reporting(E_ALL); } /** * Read config file. */ if (is_readable(CONFIG_FILE)) { /** @psalm-suppress MissingFile */ include CONFIG_FILE; }
Close