Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.141.199.214
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
symfony /
error-handler /
Delete
Unzip
Name
Size
Permission
Date
Action
Error
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
ErrorEnhancer
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
ErrorRenderer
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Exception
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Resources
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
BufferingLogger.php
1.72
KB
-rw-r--r--
2020-11-17 16:24
CHANGELOG.md
296
B
-rw-r--r--
2020-11-17 16:24
Debug.php
1.08
KB
-rw-r--r--
2020-11-17 16:24
DebugClassLoader.php
41.15
KB
-rw-r--r--
2020-11-17 16:24
ErrorHandler.php
28.6
KB
-rw-r--r--
2020-11-17 16:24
LICENSE
1.04
KB
-rw-r--r--
2020-11-17 16:24
README.md
1.18
KB
-rw-r--r--
2020-11-17 16:24
ThrowableUtils.php
730
B
-rw-r--r--
2020-11-17 16:24
composer.json
956
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\ErrorHandler; /** * Registers all the debug tools. * * @author Fabien Potencier <fabien@symfony.com> */ class Debug { public static function enable(): ErrorHandler { error_reporting(-1); if (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) { ini_set('display_errors', 0); } elseif (!filter_var(ini_get('log_errors'), \FILTER_VALIDATE_BOOLEAN) || ini_get('error_log')) { // CLI - display errors only if they're not already logged to STDERR ini_set('display_errors', 1); } @ini_set('zend.assertions', 1); ini_set('assert.active', 1); ini_set('assert.warning', 0); ini_set('assert.exception', 1); DebugClassLoader::enable(); return ErrorHandler::register(new ErrorHandler(new BufferingLogger(), true)); } }