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.123
Domains :
Cant Read [ /etc/named.conf ]
User : celfico1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
add-ons /
cpanel /
lsws_whm_plugin /
Delete
Unzip
Name
Size
Permission
Date
Action
View
[ DIR ]
drwxr-xr-x
2020-06-13 03:40
bin
[ DIR ]
drwxr-xr-x
2020-06-13 03:40
res
[ DIR ]
drwxr-xr-x
2020-06-13 03:40
static
[ DIR ]
drwxr-xr-x
2020-06-13 03:40
WhmMod_LiteSpeed_BuildPHP.php
7.46
KB
-rw-r--r--
2020-06-13 03:40
WhmMod_LiteSpeed_CPanelConf.php
12.58
KB
-rw-r--r--
2021-03-31 04:36
WhmMod_LiteSpeed_ControlApp.php
38.44
KB
-rw-r--r--
2021-03-31 04:36
WhmMod_LiteSpeed_Util.php
43.12
KB
-rw-r--r--
2021-03-31 04:36
WhmMod_LiteSpeed_View.php
59.53
KB
-rw-r--r--
2021-03-31 04:36
WhmPluginException.php
657
B
-rw-r--r--
2021-03-31 04:36
WhmPluginLogEntry.php
1.99
KB
-rw-r--r--
2021-03-31 04:36
WhmPluginLogger.php
16.3
KB
-rw-r--r--
2021-03-31 04:36
addon_lsws.cgi
565
B
-rw-r--r--
2021-03-31 04:36
autoloader.php
796
B
-rw-r--r--
2021-03-31 04:36
buildtimezone.sh
11.63
KB
-rwxr-xr-x
2021-03-31 04:36
buildtimezone_ea4.sh
4.18
KB
-rwxr-xr-x
2021-03-31 04:36
cPanelInstall.sh
3.94
KB
-rwxr-xr-x
2021-03-31 04:36
cmd_buildmatchingphp.php
2.24
KB
-rw-r--r--
2020-06-13 03:40
cmd_buildmatchingphp.sh
210
B
-rwxr-xr-x
2020-06-13 03:40
index.php
1.73
KB
-rw-r--r--
2021-03-31 04:36
install_lsws_cp.sh
4.09
KB
-rwxr-xr-x
2021-03-31 04:36
lsws.cgi
995
B
-rw-r--r--
2021-03-31 04:36
lsws.conf
222
B
-rw-r--r--
2021-03-31 04:36
lsws.html.tt
1.39
KB
-rw-r--r--
2021-03-31 04:36
lsws_icon.png
1.56
KB
-rwxr-xr-x
2021-03-31 04:36
lsws_whm_plugin_install.sh
12.32
KB
-rwxr-xr-x
2026-02-09 02:03
lsws_whm_plugin_uninstall.sh
1.8
KB
-rwxr-xr-x
2021-03-31 04:36
migrate_ea3_to_ea4_litespeed.sh
8.31
KB
-rwxr-xr-x
2020-06-13 03:40
migrate_ea4_to_ea3_litespeed.sh
2.56
KB
-rwxr-xr-x
2020-06-13 03:40
php.ini
61
B
-rw-r--r--
2021-03-31 04:36
php_build.template
8.18
KB
-rwxr-xr-x
2020-06-13 03:40
webcachemgrBootstrap.php
618
B
-rw-r--r--
2021-03-31 04:36
Save
Rename
<?php /****************************** * LiteSpeed Web Server Plugin for WHM * @Author: LiteSpeed Technologies, Inc. (https://www.litespeedtech.com) * @Copyright: (c) 2013-2019 * * * cmd_buildmatchingphp.php * * Options: * -f force build even it is matched * -v verify version and config options, no actual build * default no option: build the matching php if there is difference. * * Command line tool to build Apache matching PHP. * This requires that existing php has been successfully built by whm EasyApache * tool. You can make this as part of your automated server installation script * after EasyApache build done. * ******************************/ use \LsPanel\WhmMod_LiteSpeed_BuildPHP; require_once('WhmMod_LiteSpeed_BuildPHP.php'); define ('PHP_AP_LOC', '/usr/local/bin/php'); // Apache PHP location define ('LSWS_HOME', '/usr/local/lsws'); define( 'CGI_DIR', '/usr/local/cpanel/whostmgr/docroot/cgi/lsws' ); define( 'WGET_TEMP', '/usr/src/lsws' ); $buildtool = new WhmMod_LiteSpeed_BuildPHP(); $next = $buildtool->PrecheckPHPVersion(PHP_AP_LOC, $msg); echo "$msg \n"; // return 0: same, 1 different; 2 error stop; $do_build = FALSE; if ($next == 2) { echo "Please make sure PHP exists, you can specify a different location by editing variable definition PHP_AP_LOC \n"; } elseif (isset($argv[1]) && $argv[1] == '-v') { echo "Verify only - Exit!\n"; } elseif ($next == 0) { if (isset($argv[1]) && $argv[1] == '-f') { echo "Config option is same, will do force rebuild matching php"; $do_build = TRUE; } else { echo "No need to rebuild. Aborted! If you want to do force rebuid, add parameter -f \n"; } } else { // next == 1 $do_build = TRUE; } if (!$do_build) exit; echo "Next will build lsphp using the same configuration as Apache's php. This will download the source code and build php binary. The whole process may take more than 10 minutes, please be patient.\n"; $curdir = getcwd(); if ($curdir != CGI_DIR) { echo "change current directory to " . CGI_DIR . "\n"; chdir(CGI_DIR); } $result = $buildtool->GenerateBuildScript(PHP_AP_LOC); if (isset($result['error'])) { echo "{$result['error']} \n Aborted!\n"; return false; } $build_script = $result['file']; echo "build script generated at $build_script \n"; system($build_script);