Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
.trash /
core.1 /
tests /
app /
Delete
Unzip
Name
Size
Permission
Date
Action
doc
[ DIR ]
drwxr-xr-x
2024-01-12 10:13
examples
[ DIR ]
drwxr-xr-x
2024-01-15 11:35
js
[ DIR ]
drwxr-xr-x
2024-01-15 11:35
libraries
[ DIR ]
drwxr-xr-x
2024-01-15 11:35
locale
[ DIR ]
drwxr-xr-x
2024-01-12 10:13
setup
[ DIR ]
drwxr-xr-x
2024-01-15 11:35
sql
[ DIR ]
drwxr-xr-x
2024-01-15 11:35
templates
[ DIR ]
drwxr-xr-x
2024-01-15 11:35
themes
[ DIR ]
drwxr-xr-x
2024-01-15 11:35
vendor
[ DIR ]
drwxr-xr-x
2024-01-15 11:35
.rtlcssrc.json
20
B
-rw-r--r--
2023-12-27 04:45
CONTRIBUTING.md
2.53
KB
-rw-r--r--
2023-12-27 04:45
ChangeLog
69.34
KB
-rw-r--r--
2023-12-27 04:45
LICENSE
17.67
KB
-rw-r--r--
2023-12-27 04:45
README
1.48
KB
-rw-r--r--
2023-12-27 04:45
RELEASE-DATE-5.2.1
29
B
-rw-r--r--
2023-12-27 04:45
babel.config.json
69
B
-rw-r--r--
2023-12-27 04:45
composer.json
5.2
KB
-rw-r--r--
2023-12-27 04:45
composer.lock
298.68
KB
-rw-r--r--
2023-12-27 04:45
config.sample.inc.php
4.7
KB
-rw-r--r--
2023-12-27 04:45
favicon.ico
21.96
KB
-rw-r--r--
2023-12-27 04:45
index.php
1.05
KB
-rw-r--r--
2023-12-27 04:45
package.json
2.72
KB
-rw-r--r--
2023-12-27 04:45
robots.txt
26
B
-rw-r--r--
2023-12-27 04:45
show_config_errors.php
1.13
KB
-rw-r--r--
2023-12-27 04:45
url.php
965
B
-rw-r--r--
2023-12-27 04:45
yarn.lock
247.17
KB
-rw-r--r--
2023-12-27 04:45
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; }