Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.217.173
Domains :
Cant Read [ /etc/named.conf ]
User : celfico1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
litespeed-wp-plugin /
4.4 /
litespeed-cache /
Delete
Unzip
Name
Size
Permission
Date
Action
assets
[ DIR ]
drwxr-xr-x
2021-09-20 07:29
cli
[ DIR ]
drwxr-xr-x
2021-09-20 07:29
data
[ DIR ]
drwxr-xr-x
2021-09-20 07:29
inc
[ DIR ]
drwxr-xr-x
2021-09-20 07:29
lang
[ DIR ]
drwxr-xr-x
2021-09-20 07:29
lib
[ DIR ]
drwxr-xr-x
2021-09-20 07:29
src
[ DIR ]
drwxr-xr-x
2021-09-20 07:29
thirdparty
[ DIR ]
drwxr-xr-x
2021-09-20 07:29
tpl
[ DIR ]
drwxr-xr-x
2021-09-20 07:29
LICENSE
34.33
KB
-rw-r--r--
2021-09-20 07:29
autoload.php
1015
B
-rw-r--r--
2021-09-20 07:29
guest.vary.php
177
B
-rw-r--r--
2021-09-20 07:29
litespeed-cache.php
6.54
KB
-rw-r--r--
2021-09-20 07:29
readme.txt
126.26
KB
-rw-r--r--
2021-09-20 07:29
Save
Rename
<?php /** * Auto registration for LiteSpeed classes * * @since 1.1.0 */ defined( 'WPINC' ) || exit; // Force define for object cache usage before plugin init ! defined( 'LSCWP_DIR' ) && define( 'LSCWP_DIR', __DIR__ . '/' ) ;// Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU if ( ! function_exists( 'litespeed_autoload' ) ) { function litespeed_autoload( $cls ) { if ( strpos( $cls, '.' ) !== false ) { return; } if ( strpos( $cls, 'LiteSpeed' ) !== 0 ) { return; } $file = explode( '\\', $cls ); array_shift( $file ); $file = implode( '/', $file ); $file = str_replace( '_', '-', strtolower( $file ) ); if ( strpos( $file, 'lib/' ) === 0 || strpos( $file, 'cli/' ) === 0 || strpos( $file, 'thirdparty/' ) === 0 ) { $file = LSCWP_DIR . $file . '.cls.php'; } else { $file = LSCWP_DIR . 'src/' . $file . '.cls.php'; } if ( file_exists( $file ) ) { require_once $file; } } } spl_autoload_register( 'litespeed_autoload' );