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 /
src /
lsws /
lsws-6.1.2 /
add-ons /
webcachemgr /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Context
[ DIR ]
drwxr-xr-x
2023-06-16 14:26
Panel
[ DIR ]
drwxr-xr-x
2023-06-16 14:26
View
[ DIR ]
drwxr-xr-x
2023-06-16 14:26
AjaxResponse.php
1.9
KB
-rw-r--r--
2019-10-18 16:45
CliController.php
30.49
KB
-rw-r--r--
2021-12-08 15:14
DashNotifier.php
8.01
KB
-rw-r--r--
2020-11-18 22:34
LSCMException.php
651
B
-rw-r--r--
2020-08-18 20:02
LogEntry.php
1.72
KB
-rw-r--r--
2020-11-18 22:34
Logger.php
16.57
KB
-rw-r--r--
2020-11-18 22:34
PanelController.php
43.2
KB
-rw-r--r--
2020-10-07 17:23
PluginVersion.php
17.47
KB
-rw-r--r--
2021-02-24 21:19
UserCommand.php
24.62
KB
-rw-r--r--
2020-11-18 22:34
Util.php
11.21
KB
-rw-r--r--
2020-11-18 22:34
WPCaller.php
48.71
KB
-rw-r--r--
2021-12-08 15:14
WPDashMsgs.php
4.49
KB
-rw-r--r--
2019-12-05 16:18
WPInstall.php
15.27
KB
-rw-r--r--
2021-12-08 15:14
WPInstallStorage.php
26.7
KB
-rw-r--r--
2021-12-08 15:14
Save
Rename
<?php /* * ********************************************* * LiteSpeed Web Server Cache Manager * * @author LiteSpeed Technologies, Inc. (https://www.litespeedtech.com) * @copyright (c) 2019 * @since 1.9 * ******************************************* */ namespace Lsc\Wp; use \Lsc\Wp\LSCMException; /** * @since 1.9 */ class AjaxResponse { /** * @since 1.9 * @var AjaxResponse */ protected static $instance; /** * @since 1.9 * @var string */ protected $ajaxContent; /** * @since 1.9 * @var string */ protected $headerContent; /** * * @since 1.9 * * @param string $ajaxContent * @param string $headerContent */ private function __construct() { } /** * * @since 1.9 * * @return AjaxResponse */ private static function me() { if ( self::$instance == null ) { self::$instance = new self(); } return self::$instance; } /** * * @since 1.9 * * @throws LSCMException */ public static function outputAndExit() { $output = ''; if ( self::$instance == null ) { throw new LSCMException('AjaxResponse object never created!'); } $m = self::me(); if ( !empty($m->headerContent) ) { $output .= "{$m->headerContent}\n\n"; } $output .= $m->ajaxContent; ob_clean(); echo $output; exit; } /** * * @since 1.9 * * @param string $ajaxContent */ public static function setAjaxContent( $ajaxContent ) { self::me()->ajaxContent = $ajaxContent; } /** * * @since 1.9 * * @param string $headerContent */ public static function setHeaderContent( $headerContent ) { self::me()->headerContent = $headerContent; } }