Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
cpanel-php84-log /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
composite.php
302
B
-rw-r--r--
2025-06-09 19:56
console.php
148
B
-rw-r--r--
2025-06-09 19:56
display.php
270
B
-rw-r--r--
2025-06-09 19:56
error_log.php
168
B
-rw-r--r--
2025-06-09 19:56
file.php
210
B
-rw-r--r--
2025-06-09 19:56
firebug.php
208
B
-rw-r--r--
2025-06-09 19:56
mail.php
220
B
-rw-r--r--
2025-06-09 19:56
null.php
132
B
-rw-r--r--
2025-06-09 19:56
observer_mail.php
672
B
-rw-r--r--
2025-06-09 19:56
pear_error_handler.php
619
B
-rw-r--r--
2025-06-09 19:56
php_error_handler.php
767
B
-rw-r--r--
2025-06-09 19:56
sql.php
214
B
-rw-r--r--
2025-06-09 19:56
sqlite.php
482
B
-rw-r--r--
2025-06-09 19:56
syslog.php
155
B
-rw-r--r--
2025-06-09 19:56
win.php
202
B
-rw-r--r--
2025-06-09 19:56
Save
Rename
<?php require_once 'Log.php'; function errorHandler($code, $message, $file, $line) { global $logger; /* Map the PHP error to a Log priority. */ switch ($code) { case E_WARNING: case E_USER_WARNING: $priority = PEAR_LOG_WARNING; break; case E_NOTICE: case E_USER_NOTICE: $priority = PEAR_LOG_NOTICE; break; case E_ERROR: case E_USER_ERROR: $priority = PEAR_LOG_ERR; break; default: $priotity = PEAR_LOG_INFO; } $logger->log($message . ' in ' . $file . ' at line ' . $line, $priority); } $logger = Log::singleton('console', '', 'ident'); set_error_handler('errorHandler'); trigger_error('This is an information log message.', E_USER_NOTICE);