Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
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-12-20 05:48
bin
[ DIR ]
drwxr-xr-x
2020-12-20 05:48
res
[ DIR ]
drwxr-xr-x
2020-12-20 05:48
static
[ DIR ]
drwxr-xr-x
2020-12-20 05:48
WhmMod_LiteSpeed_CPanelConf.php
12.32
KB
-rw-r--r--
2021-01-30 12:33
WhmMod_LiteSpeed_ControlApp.php
38.44
KB
-rw-r--r--
2021-01-30 12:33
WhmMod_LiteSpeed_Util.php
43.12
KB
-rw-r--r--
2021-01-30 12:33
WhmMod_LiteSpeed_View.php
59.53
KB
-rw-r--r--
2021-01-30 12:33
WhmPluginException.php
657
B
-rw-r--r--
2021-01-30 12:33
WhmPluginLogEntry.php
1.99
KB
-rw-r--r--
2021-01-30 12:33
WhmPluginLogger.php
16.3
KB
-rw-r--r--
2021-01-30 12:33
addon_lsws.cgi
565
B
-rw-r--r--
2021-01-30 12:33
autoloader.php
796
B
-rw-r--r--
2021-01-30 12:33
buildtimezone.sh
11.63
KB
-rwxr-xr-x
2021-01-30 12:33
buildtimezone_ea4.sh
4.18
KB
-rwxr-xr-x
2021-01-30 12:33
cPanelInstall.sh
3.94
KB
-rwxr-xr-x
2021-01-30 12:33
index.php
1.73
KB
-rw-r--r--
2021-01-30 12:33
install_lsws_cp.sh
4.09
KB
-rwxr-xr-x
2021-01-30 12:33
lsws.cgi
995
B
-rw-r--r--
2021-01-30 12:33
lsws.conf
222
B
-rw-r--r--
2021-01-30 12:33
lsws.html.tt
1.39
KB
-rw-r--r--
2021-01-30 12:33
lsws_icon.png
1.56
KB
-rwxr-xr-x
2021-01-30 12:33
lsws_whm_plugin_install.sh
12.32
KB
-rwxr-xr-x
2026-02-14 09:25
lsws_whm_plugin_uninstall.sh
1.8
KB
-rwxr-xr-x
2021-01-30 12:33
php.ini
61
B
-rw-r--r--
2021-01-30 12:33
webcachemgrBootstrap.php
618
B
-rw-r--r--
2021-01-30 12:33
Save
Rename
#!/bin/sh cd `dirname "$0"` . ./functions.sh 2>/dev/null if [ $? != 0 ]; then . ./functions.sh if [ $? != 0 ]; then echo [ERROR] Can not include 'functions.sh'. exit 1 fi fi test_license() { if [ -f "$LSWS_HOME/conf/license.key" ] && [ ! -f "$LSINSTALL_DIR/license.key" ]; then cp "$LSWS_HOME/conf/license.key" "$LSINSTALL_DIR/license.key" fi if [ -f "$LSWS_HOME/conf/serial.no" ] && [ ! -f "$LSINSTALL_DIR/serial.no" ]; then cp "$LSWS_HOME/conf/serial.no" "$LSINSTALL_DIR/serial.no" fi if [ -f "$LSINSTALL_DIR/license.key" ] && [ -f "$LSINSTALL_DIR/serial.no" ]; then echo "License key and serial number are available, testing..." echo bin/lshttpd -t 2>&1 if [ $? -eq 0 ]; then LICENSE_OK=1 fi echo fi if [ "x$LICENSE_OK" = "x" ]; then if [ -f "$LSINSTALL_DIR/serial.no" ]; then echo "Serial number is available." echo "Contacting licensing server ..." echo "" $LSINSTALL_DIR/bin/lshttpd -r 2>&1 if [ $? -eq 0 ]; then echo "[OK] License key received." $LSINSTALL_DIR/bin/lshttpd -t 2>&1 if [ $? -eq 0 ]; then LICENSE_OK=1 else echo "The license key received does not work." fi fi fi fi if [ "x$LICENSE_OK" = "x" ]; then if [ -f "$LSINSTALL_DIR/trial.key" ]; then $LSINSTALL_DIR/bin/lshttpd -t 2>&1 if [ $? -ne 0 ]; then exit 1 fi else cat <<EOF [ERROR] Sorry, installation will abort without a valid license key. For evaluation purpose, please obtain a trial license key from our web site https://www.litespeedtech.com, copy it to this directory and run Installer again. If a production license has been purchased, please copy the serial number from your confirmation email to this directory and run Installer again. NOTE: Please remember to set ftp to BINARY mode when you ftp trial.key from another machine. EOF exit 1 fi fi } installLicense() { if [ -f ./serial.no ]; then cp -f ./serial.no $LSWS_HOME/conf chown "$DIR_OWN" $LSWS_HOME/conf/serial.no chmod "$CONF_MOD" $LSWS_HOME/conf/serial.no fi if [ -f ./license.key ]; then cp -f ./license.key $LSWS_HOME/conf chown "$DIR_OWN" $LSWS_HOME/conf/license.key chmod "$CONF_MOD" $LSWS_HOME/conf/license.key fi if [ -f ./trial.key ]; then cp -f ./trial.key $LSWS_HOME/conf chown "$DIR_OWN" $LSWS_HOME/conf/trial.key chmod "$CONF_MOD" $LSWS_HOME/conf/trial.key fi } LSINSTALL_DIR=`dirname "$0"` cd $LSINSTALL_DIR init INSTALL_TYPE="reinstall" LSWS_HOME=$1 AP_PORT_OFFSET=$2 PHP_SUEXEC=$3 # 1 or 0 PHP_SUFFIX=php ADMIN_USER=$4 PASS_ONE=$5 ADMIN_EMAIL=$6 SETUP_PHP=1 ADMIN_PORT=7080 DEFAULT_PORT=8088 HOST_PANEL="cpanel" WS_USER=nobody WS_GROUP=nobody PANEL_VARY=".ea4" if [ 'x$ADMIN_USER' != 'x' ] && [ 'x$PASS_ONE' != 'x' ]; then if [ -f "$LSINSTALL_DIR/admin/fcgi-bin/admin_php5" ]; then ENCRYPT_PASS=`"$LSINSTALL_DIR/admin/fcgi-bin/admin_php5" -q "$LSINSTALL_DIR/admin/misc/htpasswd.php" $PASS_ONE` else ENCRYPT_PASS=`"$LSINSTALL_DIR/admin/fcgi-bin/admin_php" -q "$LSINSTALL_DIR/admin/misc/htpasswd.php" $PASS_ONE` fi echo "$ADMIN_USER:$ENCRYPT_PASS" > "$LSINSTALL_DIR/admin/conf/htpasswd" fi configRuby if [ ! -e "$LSWS_HOME" ]; then mkdir "$LSWS_HOME" chmod 0755 "$LSWS_HOME" fi test_license cat <<EOF Installing LiteSpeed web server, please wait... EOF buildApConfigFiles installation installLicense if [ -e '/opt/cpanel/ea-php56/root/usr/bin/lsphp' ] ; then if [[ `rpm -qf '/usr/local/bin/lsphp'` != ea-php-cli* ]] ; then /bin/cp -pf '/opt/cpanel/ea-php56/root/usr/bin/lsphp' '/usr/local/bin/lsphp' fi ln -sf '/opt/cpanel/ea-php56/root/usr/bin/lsphp' '/usr/local/lsws/fcgi-bin/lsphp5' fi if [ -e '/opt/cpanel/ea-php70/root/usr/bin/lsphp' ] ; then echo 'link lsphp7 to lsws directory' ln -sf '/opt/cpanel/ea-php70/root/usr/bin/lsphp' '/usr/local/lsws/fcgi-bin/lsphp7' fi echo "" $LSWS_HOME/admin/misc/rc-inst.sh