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.15.229.189
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
symfony /
error-handler /
Delete
Unzip
Name
Size
Permission
Date
Action
Error
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
ErrorEnhancer
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
ErrorRenderer
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
Exception
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
Resources
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
BufferingLogger.php
1.96
KB
-rw-r--r--
2021-01-27 09:09
CHANGELOG.md
149
B
-rw-r--r--
2021-01-27 09:09
Debug.php
1.08
KB
-rw-r--r--
2021-01-27 09:09
DebugClassLoader.php
41.27
KB
-rw-r--r--
2021-01-27 09:09
ErrorHandler.php
27.65
KB
-rw-r--r--
2021-01-27 09:09
LICENSE
1.04
KB
-rw-r--r--
2021-01-27 09:09
README.md
1.18
KB
-rw-r--r--
2021-01-27 09:09
ThrowableUtils.php
730
B
-rw-r--r--
2021-01-27 09:09
composer.json
971
B
-rw-r--r--
2021-01-27 09:09
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)); } }