Search results

  1. K

    How to check HTTP headers in Chrome browser?

    If you want to check the HTTP headers working or not with the help of chrome browser. First open your website in Google Chrome browser. Now right click anywhere in page and then click on “Inspect” or “Inspect Element”. After that click on Network tab. Reload the web page. You will get all the...
  2. K

    Steps to enable shtml files on server

    If you want to use Server Side Includes (SSI) files on server then you can enable this feature on server. You have to enable mod_include as by default its already installed on server. For this you have to add below code in your .htaccess file: Options +Includes AddType text/html .shtml...
  3. K

    Steps to un-install ea-nginx from server

    You can easily uninstall NGINX with the help of WHM’s NGINX Manager interface. For that you have to follow below steps: Login to WHM. Click on NGINX Manager under Software. You can uninstall ea-nginx from NGINX option. For the command line you can use below command: yum erase ea-nginx
  4. K

    Steps to enable piped logging in Apache

    Piped logging means the number of open files Apache needs, if you want to reduce numberofopen filesthen you have to enable this option. Forthat you canfollow below steps: Login to WHM. Go to Apache Configuration under Service Configuration. Clink on “Piped Log Configuration” You will find...
  5. K

    Steps to disable LiteSpeed’s bandwidth Throttling for Domain

    If you want to know Litespeed’s bandwidth throttling for domain. First log into LiteSpeed’s webAdmin Console. After that go to Configuration >> Server >> Security configurations >> Per Client Throttling If you want to disable bandwidth throttling then you can set Bandwidth Throttling to “0”.
  6. K

    Steps to enable ProxyErrorOverride via WHM

    You can follow below steps to enable ProxyErrorOverride: Login to WHM. Go to Service Configuration under Apache Configuration. Here you have to click on Include Editor. You will find Post VirtualHost Include after scrolling down and insert the below line: ProxyErrorOverride On Click on “Update”...
  7. K

    Steps to uninstall Apache module in WHM

    You can follow below steps to install Apache module: Log into WHM. Go to EasyApache 4. Here you have to click on Customize option under Currently Installed Packages. Now click on “Apache Modules”. Enter your extension which you want to uninstall. Mark it for removal with toggle icon. Click on...
  8. K

    Steps to block autodiscover / autodiscover.xml access on cpanel server

    If you want to block the access of autodiscover/autodiscover.xml then you can do this with some of directives. You have to modify the /usr/local/apache/conf/includes/post_virtualhost_global.conf file and add below code in this configuration file: Alias /htdocs_autodiscover...
  9. K

    Steps to verify that PHP mail() working or not

    If you are not sure about your PHP mail() working or not on your server then you can manually check it with coding. You can upload simple code and can check at your end. You just have to upload below code in your PHP file and then you can check, you are getting mail or not. <?php $dest =...
  10. K

    What is storage location of MySQL backup?

    If you have configured MySQL backup in Backup configuration then you have to check the location of MySQL backup. You can use below command to check the backup of your database: grep 'BACKUPDIR\|MYSQL' /var/cpanel/backups/config Here BACKUPDIR is the location where cpanel backup is available.
  11. K

    Steps to kill MySQL connections on server

    If you are making too many database connections then you will get error “too many database connections”, to resolve this error you can manually terminate database connections. Most quick and easy ways to terminate or kill MySQL connections is to restart MySQL services. You can use below command...
  12. K

    Steps to restore MySQL grants

    Script restoregrants which is available in /usr/local/cpanel/bin/restoregrants location helps to restore database users from data which is available in /var/cpanel/databases/grants_* files. You can use below command: /usr/local/cpanel/bin/restoregrants [--cpuser=cpuser] [--db=mysql|pg]...
  13. K

    Steps to convert database tables from InnoDB to MyISAM

    If you want to convert your database tables to MyISAM then you can follow below steps.But for that it is must to have root access of your database. You have to first dumped your SQL file via mysqldump and for that we have to replace "ENGINE=INNODB" with "ENGINE=MyISAM". You can check below...
  14. K

    Steps to find MySQL data location

    Normally MySQL data will store in /var/lib/mysql, but still you want to check the the location of your database then you can follow below steps: You can use below command to find the location of data directory: mysql -e "show variables like 'datadir'" You can get the directory for MySQL with...
  15. K

    Steps to find out about cpanel User for particular user using MySQL query

    We have to find database name and user name from table name which only we have. Let’s see how to find the details of database and cpanel user. If you want to determine the user of particular table then first you have to find out database name. For this you have to run below command, but make...
  16. K

    Steps to connect VPS to Windows 10

    You can connect your VPS server with Windows 10, for that you have to follow below steps: First click on “Start” button and search for “Remote Desktop” . You will find “Remote Desktop Connection”, you have to click on it. A window will appear in which you have to enter IP address and after that...
  17. K

    Steps to fix PHPPgAdmin cPanel Login Issues

    Whenever user access PostgreSQL databases then its privileges are set in cpanel account and if user doesn’t going to visit then phppgadmin will not work. Also you have to check cpanel password for space as its going to creating the issue in psql/phpPGadmin. There is solution to resolve this...
  18. K

    Steps to change MySQL root password via WHM

    If you are getting below error then also you can follow below steps: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) Login to WHM. Here click on “SQL Services” Now you will find “MySQL Root Password”, click on it and you can change MySQL root password here.
  19. K

    Steps to increase open files limits for MariaDB

    The open_files_limit setting can be set via system on CentOS 7 server, for that you have to edit my.cnf file. First you have to create file and you can check command for that: /etc/systemd/system/mariadb.service.d/limits.conf After that you have to add below lines of code in your my.cnf file...
  20. K

    Steps to find MySQL data location

    Normally MySQL data will store in /var/lib/mysql, but still you want to check the the location of your database then you can follow below steps: You can use below command to find the location of data directory: mysql -e "show variables like 'datadir'" You can get the directory for MySQL with...
Top