Recommended Services
Supported Scripts
WordPress
Hubspot
Joomla
Drupal
Wix
Shopify
Magento
Typeo3
Day: July 26, 2023
How to Create and Extract Tar.gz File in Linux
How to create tar.gz in Linux :
tar -zcvf "archive.tar.gz" "file.sql"
tar -zcvf "archive.tar.gz" "/home/example/public_html/"
How to extract tar.gz in Linux :
tar -zxvf "archive.tar.gz"
Source : xrvel
How to Install Litespeed in WHM
Here i will explain how to install Litespeed webserver in WHM.According to the Litespeed wiki :
1.Open & login to your SSH terminal
2. Execute this command to download the installer :
wget http://www.litespeedtech.com/packages/cpanel/lsws_whm_autoinstaller.sh
3. Next we will make the file executable :
chmod a+x lsws_whm_autoinstaller.sh
4.Last step we can execute this command :(please check ...
Does CSF Firewall Make Your WHM / Server Slow ?
There are various reasons why CSF firewall may make your WHM / server slow.Here are some personal tips from me.
1.Change your default SSH Port from 22 to something else. It will prevent (although temporarily) malicious bots from scanning your server, and adding extra load to your firewall.
2. Edit ...
How to Install ConfigServer Security & Firewall (CSF) in WHM
To install ConfigServer Security & Firewall (CSF) in WHM, please run this commands in your SSH terminal one by one.
wget https://download.configserver.com/csf.tgz
tar -xzf csf.tgz
cd csf
sh install.sh
After it completes, there is a new menu in WHM which is under “Plugins” category, named “ConfigServer Security & Firewall”.
Source : xrvel
How to Change SSH Port with WHM & CSF
If you are using WHM & CSF, under CentOS, you may follow this steps to change SSH port from 22 (default) to something else .
1.First we must allow incoming data in the new port. Open your WHM >> Plugins >> CSF.
2. Click “Firewall Configuration” button.
3. Add your new ...
How to Fix the Problem When You aren’t Able to Install a Plugin or Theme
Most of the WordPress users freak out when they’re not allowed to install a plugin or theme, facing such an issue can mean so many things. Depending on the expertise, many people don’t have an idea if they use the fully-hosted WordPress version or self-hosted. If you ...