Search results

  1. K

    How to Implement Load Balancing In Database Servers?

    Database Load Balancing Servers is a classic method allocate the workload with multiple servers and traffic of incoming network of database server which is running at the backend. The main goal of Database Load Balancing is to offer an endpoint of a single database to increase queries, minimize...
  2. K

    Database Error Connection Failed in RoundCube cPanel

    RoundCube is a client based on Web IMAP and that is very easy to install & configure. RoundCube is open-source and free software that is subject to General Public License that except plugins and skins. The main feature of Roundcube is that all data are stored in the database and it does have the...
  3. K

    Updating the WordPress Site and Home URL Using Command Line

    You might have changed the WordPress site URL and the home URL from the cPanel using phpMyAdmin. As you might attest, it’s quick and easy to do so. But what about achieving the same feat using the Command Line? In some instances (when you do not have a control panel), admins may turn to the...
  4. K

    Resolve error “Excessive resource usage”, getting notification

    You will get these notification from ConfigServer LFD, if you want to change resource usage limits then you can change it by using the PT_USERMEM and PT_USERTIME settings in WHM. Let’s check steps for settings: Login to WHM >> Plugins >> ConfigServer Security & Firewall >> Firewall...
  5. K

    What is different between ALT-PHP and EA-PHP?

    ALT-PHP provides by CloudLinux and it also includes PHP selector feature. These versions help to access outdated PHP version and also these versions are hardened and patched against vulnerabilities. Right now you can easily use PHP selector to change PHP version from PHP 4.4 to PHP 7.4. And...
  6. K

    Steps to enable error reporting in WHMCS

    You can enable error reporting in WHMCS from admin area and configuration file. For that you can login into WHMCS and follow below steps: Go to Configuration >> System Settings >> General Settings >> Other. Here you will find “Display Errors” checkbox, click on it. At last “Save Changes”. To...
  7. K

    cPanel log location

    To check Cpanel/WHM Service Status Logs: Location : /var/log/chkservd.log Description : chkservd is helps to monitor all the services available in on services. Active services represents by [+] and inactive services represent with [-]. To check cPanel error logs: Location ...
  8. K

    Steps to enable or disable output_buffering directive

    Output buffer is a location where data is where data ready and wait until the output device or display device is not ready. Normally when a PHP script runs it sends output in multiple parts until the processing complete. But if output butter is enabled PHP sends data when script processing is...
  9. K

    How to set quota values for the cpanel accounts?

    You can follow below steps if you are getting any issue related to quota in cpanel: * vim /etc/fstab First you have to check whether the quota is enabled or not. * mount -o remount /home Then remount the /home partition with above command. Now we have to create file ”aquota.user ” and for...
  10. K

    How to enable permission to create subdomains of hostname?

    If you are getting error “You do not have permission to create subdomains of server’s hostname then you can resolve this issue with below steps: Login to WHM. Here click on “Tweak Settings” under “Server Configuration”. You have to enable below option in “Tweak Settings”. Allow users to park...
  11. K

    SSL (Secure Sockets Layer) certificate is going to expire in 30 days

    In this we are going to learn how to reset cpanel SSL certificates: Login to WHM. Go to Service >> Configuration >> Manage Secure Sockets Layer Certificates Here you will find “Actions” column, you have to click on Reset Certificate, but make sure your SSL is valid for all the services.
  12. K

    Not able to accessing emails from Roundcube

    Most of the time this happens due to permission issue, we can easily resolve this with below steps: To resolve this issue you can run below script: /scripts/mail per username Sometimes email account shows negative size for few cpanel users, you can resolve this by using below script...
  13. K

    Image icon is missing from cpanel

    If you are not able to see any icon of options in cpanel then you just have to run below script: /script/upcp or /scripts/upcp –force
  14. K

    How to optimize or repair a Drupal database?

    In this section we are going to show how to optimize a high performing Drupal database website and also, we going to check on how to repair or recover the damaged MySQL database tables. For MySQL DB administration on Windows & Linux, most of the professional programmers use phpMyAdmin. And the...
  15. K

    Here’s How You can Run PHP Commands Using The Terminal

    If you’re troubleshooting scripts, you may find it almost inevitable to run PHP commands via the terminal or the command-line. If it’s your first time doing so, this article is for you. Learn how to run PHP commands using command-line to configure Cron jobs. Step-by-Step Process Here are the...
  16. K

    Steps to remove Wordpress Toolkit feature

    You can easily remove Wordpress toolkit feature for cpanel in WHM. For this you have to access Feature List option in WHM: Login to WHM. Here click on “Feature Manager” option under “packages” option. Now click on “Edit Feature List”. Here uncheck “Wordpress Toolkit” option and click on Save.
  17. K

    Is it possible to manage Wordpress Toolkit via command-line?

    We can easily manage Wordpress Toolkit with wp-toolkit command, we can run commands in Terminal but we need root access. # which wp-toolkit /usr/local/bin/wp-toolkit If you want to know all the options of wp-toolkit then you can use below command for help: wp-toolkit --help You can check the...
  18. K

    Ioncube extension available or not in ea-php80

    Right now IonCube extension is not released by upstream provider, so we cannot install it now. IonCube extension is not available in cpanel repositories: yum search ea-php80-php-ioncube Whenever the provider release, we can install it through EasyApache 4 in WHM.
  19. K

    How to find clone data location store by Wordpress Toolkit?

    You will find the clone data of your Wordpress website in installation path, but its available in hidden directory with ".wp-toolkit_X". Here X represents a variable which ensures that directory has unique name. You can check below example: /home/user/public_html/.wp-toolkit_z
  20. K

    How to Automate MySQL Database Backups in Drupal 8 by Installing Modules?

    Backup is a must for any website. By having backup copies, you can retrieve your website in case there’s a breach or loss of data. To go a step further, you can automate the MySQL database backups for your Drupal 8 website. This requires you to install some modules like Backup & Migrate. As an...
Top