Search results

  1. K

    Steps to start and stop Cloudlinux Node.JS application via command

    You can follow below steps to start Cloudlinux Node.JS application: Login to server via SSH. You can run below command to start cloudlinux-selector start --json --interpreter nodejs --user cpanelusername --app-root /path/to/application/root You can run below command to stop your application...
  2. K

    How to disable PHP functions on server?

    For security reasons we have to disable few PHP functions on server. You can check below steps for that: Login to WHM. Here click on “MultiPHP Manager” under “Software”. Here click on “Editor Mode” tab and you have to choose specific PHP version from drop down list. You will see the php.ini...
  3. K

    Steps to install PHP zip module

    If your website require PHP zip module for particular version then you can check this article. To resolve this we can install zip module for all versions. You can check below command: $ /usr/local/cpanel/bin/rebuild_phpconf --current DEFAULT PHP: ea-php71 ea-php71 SAPI: cgi ea-php72 SAPI: cgi...
  4. K

    How to check Wordpress installation is redirecting or not?

    If you want to check that wordpress is redirecting your website to another location then you can follow below steps: Login to your SSH as a root user. After that run below command: curl -IL http://cp-domain.com You will get the below output: # curl -IL cp-domain.com HTTP/1.1 301 Moved...
  5. K

    Steps to change the Apache DirectoryIndex priority

    If you want you can manually change the DirectoryIndex priority in WHM. You can follow below steps for that: Login to WHM. Here click on “Apache Configuration” under “Service configuration”. You will find option “DirectoryIndex Priority”, you can change it according to your need. You can also...
  6. K

    What to do to limit crawlers and Bots on website?

    Our websites are crawled from different bots and search engines, sometimes it is beneficial or sometime it is creating the issue. Bots and crawlers are consumed lots of bandwidth. To avoid this issue we can upload robots.txt file in our home directory. In this file we can block bots and for that...
  7. K

    How to install Jetbackup 4 in WHM?

    You can follow below steps to install Jetbackup 4 in Linux: First of all you have to purchase licence of Jetbackup from cpanel. Now you have to login into your server via SSH. Now you have to run below commands to install software: yum install...
  8. K

    Steps to stop ImunifyAV

    ImunifyAV run as a demon so you can use service management commands: For CentOS/CloudLinux OS 6, you can run below command: service imunify-antivirus stop for all other operating system you can run below command: systemctl stop imunify-antivirus
  9. K

    Steps to uninstall ImunifyAV

    First to uninstall ImunifyAV you have to download theimav-deploy.sh script. You can use below command to download this script: wget https://repo.imunify360.cloudlinux.com/defence360/imav-deploy.sh After that you have to again run below command to uninstall ImunifyAV: bash imav-deploy.sh...
  10. K

    How to disable caching of cpanel ports in cloudflare?

    If you are using cloudflare and having issue on accessing cpanel or WHM ports then here is something for you. You can disable caching of particular ports in cloudflare. You can check below steps for this: Your WHM access URL is https://domainname.com:2087, here 2087 is must be port on which you...
  11. K

    Steps to install Wordpress Toolkit via command line

    In this article you can check steps to install Wordpress Toolkit with command line. For this itis must to have root access of server. Login to server via SSH. You have to run below command: sh <(curl https://wp-toolkit.plesk.com/cPanel/installer.sh || wget -O -...
  12. K

    Steps to enable maintenance mode in Wordpress Toolkit

    As a developer if you want to update your website and want to stop your visitors then you can enable Maintenance mode for your Wordpress. You can either enable it directly with Wordpress or you can also use Wordpress Toolkit. In this article we are discussing steps to enable Maintenance mode in...
  13. K

    How to install PHP module fileinfo?

    You can follow below steps to install PHP module fileinfo: Login to WHM. Here click on “EasyApache4” under Software. Now click on “Customize” button. You have to click on “PHP Extensions” tab. You will find a search bar, you have search any php module and then install it. Click on “Review”...
  14. K

    Steps to update Wordpress Toolkit via command line

    Wordpress toolkit is an interface which helps to manage Wordpress websites. You can check below steps to update Wordpress toolkit to latest server: First you have to check that Wordpress Toolkit is installed on server or not.For this you can use below command: rpm -qa|grep wp-toolkit You...
  15. K

    Steps to whitelist the mod security rule in WHM

    You can follow below steps to whitelist the mod security rule in WHM: Login to WHM. Here click on ”Modsecurity Tool” under “Security Center”. In the next screen you will see the option “Rule List”, click on it. Now in the search bar you have to search the particular mod security rule like...
  16. K

    Steps to calculate Plesk stats update

    In plesk statistics update automatically in 24 hours but if they are not updating automatically then we have to manually update stats on server. For that you have to login into server as an administrator and then run command: plesk sbin statistics [command][options] To update Plesk statistics...
  17. K

    Steps to manage FTP brute force protection in Imunify360

    You can follow below steps to manage Imunify360: Login to WHM. Go to Plugins >> Imunify360 Here you will find gear like icon, you have to click on it. Now you can see option “FTP brute-force attack protection” . If you want to enable this option then check it and to disable it uncheck it. At...
  18. K

    Steps to change language in jetbackup

    In jetbackup 4 translation feature is available but we have to manually configured it: You can check the original files of WHM: /usr/local/cpanel/whostmgr/docroot/templates/jetbackup/app/lang/en/{SECTION.json} Here {SECTION.json} is a section in Jetbackup Dashboard. We have to place the...
  19. K

    How to change the max execution time in WHMCS?

    If we are getting below error while executing cron jobs then we can update the WHMCS configuration file. Let’s see how to check this: PHP Fatal error: Maximum execution time of 300 seconds exceeded in /path/to/file.php To resolve this issue we can update the configuration.php file and add...
  20. K

    Steps to use Node.js application for addon domain

    If you are installing Node.js for the main domain then there is no need to worry or make any changes, but if you are installing it on your addon domain then you can follow below steps: When we are installing Node.js on our addon domain then sometime application will not create the SSL include...
Top