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.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : klinikpe
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-06-18 12:54
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
#!/bin/sh confpath=/usr/local/lsws/conf function rm_ea4_lsphps_t(){ rm -rf $confpath/ea4_lsphps_t } function rm_ea4_handlers_t(){ rm -rf $confpath/ea4_handlers_t } #main conversion script EA4_EXTERNAL_PROC_TEMPLATE="${confpath}/ea4_lsphps_t" EA4_HANDLER_TEMPLATE="${confpath}/ea4_handlers_t" #Check for and add any missing LSPHP configurations if ! grep -q '<name>lsphp54</name>' $confpath/httpd_config.xml then echo " <extProcessor> <type>lsapi</type> <name>lsphp54</name> <address>uds://tmp/lshttpd/lsphp54.sock</address> <note></note> <maxConns>35</maxConns> <env>PHP_LSAPI_MAX_REQUESTS=5000</env> <env>PHP_LSAPI_CHILDREN=35</env> <initTimeout>60</initTimeout> <retryTimeout>0</retryTimeout> <persistConn>1</persistConn> <pcKeepAliveTimeout></pcKeepAliveTimeout> <respBuffer>0</respBuffer> <autoStart>1</autoStart> <path>/opt/cpanel/ea-php54/root/usr/bin/lsphp</path> <backlog>100</backlog> <instances>1</instances> <runOnStartUp></runOnStartUp> <extMaxIdleTime>10</extMaxIdleTime> <priority>0</priority> <memSoftLimit>2047M</memSoftLimit> <memHardLimit>2047M</memHardLimit> <procSoftLimit>400</procSoftLimit> <procHardLimit>500</procHardLimit> </extProcessor>" >> $EA4_EXTERNAL_PROC_TEMPLATE fi if ! grep -q '<name>lsphp55</name>' $confpath/httpd_config.xml then echo " <extProcessor> <type>lsapi</type> <name>lsphp55</name> <address>uds://tmp/lshttpd/lsphp55.sock</address> <note></note> <maxConns>35</maxConns> <env>PHP_LSAPI_MAX_REQUESTS=5000</env> <env>PHP_LSAPI_CHILDREN=35</env> <initTimeout>60</initTimeout> <retryTimeout>0</retryTimeout> <persistConn>1</persistConn> <pcKeepAliveTimeout></pcKeepAliveTimeout> <respBuffer>0</respBuffer> <autoStart>1</autoStart> <path>/opt/cpanel/ea-php55/root/usr/bin/lsphp</path> <backlog>100</backlog> <instances>1</instances> <runOnStartUp></runOnStartUp> <extMaxIdleTime>10</extMaxIdleTime> <priority>0</priority> <memSoftLimit>2047M</memSoftLimit> <memHardLimit>2047M</memHardLimit> <procSoftLimit>400</procSoftLimit> <procHardLimit>500</procHardLimit> </extProcessor>" >> $EA4_EXTERNAL_PROC_TEMPLATE fi if ! grep -q '<name>lsphp56</name>' $confpath/httpd_config.xml then echo " <extProcessor> <type>lsapi</type> <name>lsphp56</name> <address>uds://tmp/lshttpd/lsphp56.sock</address> <note></note> <maxConns>35</maxConns> <env>PHP_LSAPI_MAX_REQUESTS=5000</env> <env>PHP_LSAPI_CHILDREN=35</env> <initTimeout>60</initTimeout> <retryTimeout>0</retryTimeout> <persistConn>1</persistConn> <pcKeepAliveTimeout></pcKeepAliveTimeout> <respBuffer>0</respBuffer> <autoStart>1</autoStart> <path>/opt/cpanel/ea-php56/root/usr/bin/lsphp</path> <backlog>100</backlog> <instances>1</instances> <runOnStartUp></runOnStartUp> <extMaxIdleTime>10</extMaxIdleTime> <priority>0</priority> <memSoftLimit>2047M</memSoftLimit> <memHardLimit>2047M</memHardLimit> <procSoftLimit>400</procSoftLimit> <procHardLimit>500</procHardLimit> </extProcessor>" >> $EA4_EXTERNAL_PROC_TEMPLATE fi if ! grep -q '<name>lsphp70</name>' $confpath/httpd_config.xml then echo " <extProcessor> <type>lsapi</type> <name>lsphp70</name> <address>uds://tmp/lshttpd/lsphp70.sock</address> <note></note> <maxConns>35</maxConns> <env>PHP_LSAPI_MAX_REQUESTS=5000</env> <env>PHP_LSAPI_CHILDREN=35</env> <initTimeout>60</initTimeout> <retryTimeout>0</retryTimeout> <persistConn>1</persistConn> <pcKeepAliveTimeout></pcKeepAliveTimeout> <respBuffer>0</respBuffer> <autoStart>1</autoStart> <path>/opt/cpanel/ea-php70/root/usr/bin/lsphp</path> <backlog>100</backlog> <instances>1</instances> <runOnStartUp></runOnStartUp> <extMaxIdleTime>10</extMaxIdleTime> <priority>0</priority> <memSoftLimit>2047M</memSoftLimit> <memHardLimit>2047M</memHardLimit> <procSoftLimit>400</procSoftLimit> <procHardLimit>500</procHardLimit> </extProcessor>" >> $EA4_EXTERNAL_PROC_TEMPLATE fi if ! grep -q '<name>lsphp71</name>' $confpath/httpd_config.xml then echo " <extProcessor> <type>lsapi</type> <name>lsphp71</name> <address>uds://tmp/lshttpd/lsphp71.sock</address> <note></note> <maxConns>35</maxConns> <env>PHP_LSAPI_MAX_REQUESTS=5000</env> <env>PHP_LSAPI_CHILDREN=35</env> <initTimeout>60</initTimeout> <retryTimeout>0</retryTimeout> <persistConn>1</persistConn> <pcKeepAliveTimeout></pcKeepAliveTimeout> <respBuffer>0</respBuffer> <autoStart>1</autoStart> <path>/opt/cpanel/ea-php71/root/usr/bin/lsphp</path> <backlog>100</backlog> <instances>1</instances> <runOnStartUp></runOnStartUp> <extMaxIdleTime>10</extMaxIdleTime> <priority>0</priority> <memSoftLimit>2047M</memSoftLimit> <memHardLimit>2047M</memHardLimit> <procSoftLimit>400</procSoftLimit> <procHardLimit>500</procHardLimit> </extProcessor>" >> $EA4_EXTERNAL_PROC_TEMPLATE fi if ! grep -q '<name>lsphp72</name>' $confpath/httpd_config.xml then echo " <extProcessor> <type>lsapi</type> <name>lsphp72</name> <address>uds://tmp/lshttpd/lsphp72.sock</address> <note></note> <maxConns>35</maxConns> <env>PHP_LSAPI_MAX_REQUESTS=5000</env> <env>PHP_LSAPI_CHILDREN=35</env> <initTimeout>60</initTimeout> <retryTimeout>0</retryTimeout> <persistConn>1</persistConn> <pcKeepAliveTimeout></pcKeepAliveTimeout> <respBuffer>0</respBuffer> <autoStart>1</autoStart> <path>/opt/cpanel/ea-php72/root/usr/bin/lsphp</path> <backlog>100</backlog> <instances>1</instances> <runOnStartUp></runOnStartUp> <extMaxIdleTime>10</extMaxIdleTime> <priority>0</priority> <memSoftLimit>2047M</memSoftLimit> <memHardLimit>2047M</memHardLimit> <procSoftLimit>400</procSoftLimit> <procHardLimit>500</procHardLimit> </extProcessor>" >> $EA4_EXTERNAL_PROC_TEMPLATE fi if ! grep -q '<suffix>php54</suffix>' $confpath/httpd_config.xml then echo " <scriptHandler> <suffix>php54</suffix> <type>lsapi</type> <handler>lsphp54</handler> <note></note> </scriptHandler>" >> $EA4_HANDLER_TEMPLATE fi if ! grep -q '<suffix>php55</suffix>' $confpath/httpd_config.xml then echo " <scriptHandler> <suffix>php55</suffix> <type>lsapi</type> <handler>lsphp55</handler> <note></note> </scriptHandler>" >> $EA4_HANDLER_TEMPLATE fi if ! grep -q '<suffix>php56</suffix>' $confpath/httpd_config.xml then echo " <scriptHandler> <suffix>php56</suffix> <type>lsapi</type> <handler>lsphp56</handler> <note></note> </scriptHandler>" >> $EA4_HANDLER_TEMPLATE fi if ! grep -q '<suffix>php70</suffix>' $confpath/httpd_config.xml then echo " <scriptHandler> <suffix>php70</suffix> <type>lsapi</type> <handler>lsphp70</handler> <note></note> </scriptHandler>" >> $EA4_HANDLER_TEMPLATE fi if ! grep -q '<suffix>php71</suffix>' $confpath/httpd_config.xml then echo " <scriptHandler> <suffix>php71</suffix> <type>lsapi</type> <handler>lsphp71</handler> <note></note> </scriptHandler>" >> $EA4_HANDLER_TEMPLATE fi if ! grep -q '<suffix>php72</suffix>' $confpath/httpd_config.xml then echo " <scriptHandler> <suffix>php72</suffix> <type>lsapi</type> <handler>lsphp72</handler> <note></note> </scriptHandler>" >> $EA4_HANDLER_TEMPLATE fi #Create a backup of current configuration file and add missing LSPHP configurations. Restart the server to have changes take affect. now=$(date +"%Y%m%d") yes | cp -p $confpath/httpd_config.xml $confpath/httpd_config.xml.ea3.$now sed -i "/<extProcessorList>/r $confpath/ea4_lsphps_t" $confpath/httpd_config.xml sed -i "/<scriptHandlerList>/r $confpath/ea4_handlers_t" $confpath/httpd_config.xml rm_ea4_lsphps_t rm_ea4_handlers_t service lsws restart touch /usr/local/cpanel/whostmgr/docroot/cgi/lsws/litespeed_ea4 exit 0