March 13, 2025
DDOS
Comments Off on DDOS
February 15, 2025
January 30, 2025
Add Ioncube Loader CloudLinux
yum install alt-php8*-sourceguardian alt-php8*-ioncube-loader --enablerepo=cloudlinux-updates-testing
Comments Off on Add Ioncube Loader CloudLinux
November 15, 2024
December 16, 2021
February 16, 2021
Disable Mirror
nano /etc/yum/pluginconf.d/fastestmirror.conf
tambahkan mirror yang tidak diinginkan di exclude
Comments Off on Disable Mirror
November 7, 2019
Uninstall & Install Litespeed
Switch to apache
/usr/local/lsws/admin/misc/cp_switch_ws.sh apache
Uninstall Litespeed Plugins di WHM
/usr/local/cpanel/whostmgr/docroot/cgi/lsws/lsws_whm_plugin_uninstall.sh
Uninstall Litespeed
/usr/local/lsws/admin/misc/uninstall.sh
Install LiteSpeed
cd /usr/src; curl https://www.litespeedtech.com/packages/cpanel/lsws_whm_plugin_install.sh | sh
Update ke Versi Lisensi
/usr/local/lsws/admin/misc/lsup.sh -f -v 4.2
Comments Off on Uninstall & Install Litespeed
August 14, 2019
LVE Extension Hilang dari Paket Hosting
Comments Off on LVE Extension Hilang dari Paket Hosting
October 3, 2018
Looping Update Package (Yum Update)
yum clean all --enablerepo=*
yum update -y
Comments Off on Looping Update Package (Yum Update)
August 2, 2018
Delete Empty File or 0b File
Use the Find command to find files by size and print file names to standard output.
find . -type f -size 0b -print
substitute -print with -delete to delete the files rather than print them on screen.
find . -type f -size 0b -delete
Comments Off on Delete Empty File or 0b File