Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
add-ons /
webcachemgr /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Context
[ DIR ]
drwxr-xr-x
2025-02-25 04:01
Panel
[ DIR ]
drwxr-xr-x
2025-02-25 04:01
ThirdParty
[ DIR ]
drwxr-xr-x
2025-02-25 04:01
View
[ DIR ]
drwxr-xr-x
2025-02-25 04:01
WpWrapper
[ DIR ]
drwxr-xr-x
2025-02-25 04:01
AjaxResponse.php
1.9
KB
-rw-r--r--
2025-02-25 04:01
CliController.php
40.77
KB
-rw-r--r--
2025-02-25 04:01
DashNotifier.php
9.89
KB
-rw-r--r--
2025-02-25 04:01
LSCMException.php
651
B
-rw-r--r--
2025-02-25 04:01
LogEntry.php
1.72
KB
-rw-r--r--
2025-02-25 04:01
Logger.php
17.95
KB
-rw-r--r--
2025-02-25 04:01
PanelController.php
50.98
KB
-rw-r--r--
2025-02-25 04:01
PluginVersion.php
21.91
KB
-rw-r--r--
2025-02-25 04:01
RedefineGlobalFuncs.php
865
B
-rw-r--r--
2025-02-25 04:01
UserCommand.php
28.72
KB
-rw-r--r--
2025-02-25 04:01
Util.php
18.19
KB
-rw-r--r--
2025-02-25 04:01
WPCaller.php
53.47
KB
-rw-r--r--
2025-02-25 04:01
WPDashMsgs.php
4.75
KB
-rw-r--r--
2025-02-25 04:01
WPInstall.php
16.79
KB
-rw-r--r--
2025-02-25 04:01
WPInstallStorage.php
32.21
KB
-rw-r--r--
2025-02-25 04:01
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; } }