Search results

  1. K

    Complete Guide to Optimizing or Repairing a Drupal Database

    A database is at the core of any website. It stores all the information and data needed to run a website successfully. In the case of Drupal, it uses MySQL database by default to power the website. But over time, they may get damaged or corrputed with use. To ensure superior performance, you...
  2. K

    How to check backup of account in JetBackup removed from WHM?

    In Jetbackup we can say the “Orphan” account which we have removed from cpanel and WHM. The orphaned account will remain till 14 days on server by default. We can also update Jetbackup settings and update the time according to our need. Here you will find “Delete orphan backups older than”...
  3. K

    What is the difference between JetBackup 4 and Jetbackup 5?

    You can follow below steps to know the difference between JetBackup 4 and JetBackup5. The main difference is that JetBackup 5 support various control panels like DirectAdmin, Plesk native support, etc but JetBackup 4 supports only cpanel. JetBackup 4 supports CentOS and CloudLinux but JetBackup...
  4. K

    Can we do Multisite cloning in Wordpress Toolkit?

    In Wordpress Toolkit we cannot do multisite Wordpress installation, but if you tried to attempt multisite cloning then you will get below output: "Cpanel LIVE Site" was cloned with errors Unable to clone remote WordPress instance #1 ('http://www.domain.com' at server 'localhost'): cloning of...
  5. K

    How to add new currency in WHMCS?

    In WHMCS you we can easily sell our products to multiple currencies, we can manually set the price of product, it will automatically update according to rate fluctuation Login to WHMCS. Go to Setup >> Payments >> Currencies Now you will have to enter all the details of new currency and click on...
  6. K

    Steps to enable HTTP 2 for Litespeed

    You have to follow below steps, but for that you have to use web console: You can login into WebAdmin Console. Here you have to find “Enable SPDY/HTTP2/HTTP3” option and for that you have to click on “SSL” tab. Select HTTP/2 option to enable HTTP/2.
  7. K

    Is it possible to use opcache in suphp handler?

    No, you cannot use opcache in suphp as its not compatible. If you want to use opcache then you have to install any other PHP handler like CGI. You can easily change handler in WHM : Login to WHM. Here click on “EasyApache 4”. Here you can customize your handler according to your need.
  8. K

    Steps to install NodeJS selector on Cloudlinux

    If you want to enable NodeJS Selector then you have to install multiple packages for the user. You can follow below steps to install it: First you have to install Alt-NodeJS package with below command: yum groupinstall alt-nodejs After that you have to install other modules too like: Pushion...
  9. K

    Want to know about enabling of mod_deflate for PHP files

    To enable mod_deflate in Apache you have to enable zlib.output_compression in MultiPHP INI Editor, for that you have to follow below steps: Login to WHM. Click on MultiPHP INI Editor under Software. Here you can also use editor tab to enable zlib.output_compression. You have to enable it for...
  10. K

    Steps to add Tomcat to CageFS

    You can follow below steps add Tomcat to CageFS: First you have to add tzdata-java RPM to CageFS with below command: $ cagefsctl --addrpm tzdata-java Now create /etc/cagefs/conf.d/java.cfg with following: [java-custom] comment=Java-custom paths=/usr/bin/java, /etc/alternatives/java At last...
  11. K

    Configuring Joomla Page Caching: A Complete Guide

    Every website, whether its built on Joomla or WordPress, needs to load content from a database. Often, it’s a MySQL database. The data is fetched from a MySQL database, it is then displayed on the screen. This way of loading data every time you request a page can be time- and resource-intensive...
  12. K

    How can we enable application manager in cpanel?

    You can enable it with below steps: First you have to check that “Application manager” is available in Feature Manager or not. If it’s not available then you have to install below packages: ea-ruby24-mod_passenger ea-apache24-mod_env You can use this command to install both packages: yum...
  13. 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...
  14. 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...
  15. 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...
  16. K

    Installation of Drupal 8 automated MySQL database backup

    In this article, we are going to learn the importance of a module called “Backup & Migrate” which helps you to install Drupal 8 MySQL database backup. Along with this module, it is a must to know the file storage of off-site appearance. Coming to Drupal 7, you can see the functions which are...
  17. K

    Your Guide to Enabling Content Versioning in Joomla

    You just modified an article on your Joomla website and later found out that you’ve unintentionally modified the entire page. This is not an uncommon scenario. Many Joomla admins and content mods deal with these type of situations quite regularly. The solution? To use Joomla Content Versioning...
  18. 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...
  19. 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...
  20. 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...
Top