Search results

  1. K

    Steps to remove IP Address in cpanel server

    If you want to remove IP address which is bound to cpanel license then you can follow steps: Login to your WHM account. Here click on “Manage Licenses” and locate the license IP address. Now select “Edit IP” from arrow under Actions. Here you can enter the new IP address and click on “Save...
  2. K

    How to delete trash contents automatically in WHM?

    As an admin if you want that content from cpanel user’s trash automatically delete then you can follow below steps: Login to WHM. Search “Tweak settings” in WHM search bar and click on it. Now you will get option "Age, in days, of content to purge from users’ File Manager Trash", select it and...
  3. K

    Steps to secure Wordpress application with .htaccess file.

    Inserting some commands in the .htaccess file of your WordPress site can greatly improve its security. We specify below some typical commands, it being understood that the choice to implement each measure is subjective and must be evaluated case by case. You can use below code to secure your...
  4. K

    How to prevent brute force attack on wordpress through XML-RPC?

    As you know, XML-RPC is a way to communicate between Wordpress and other systems like Windows Live Writer. In earlier versions XML-RPC was disabled but after version 3.4 its enabled by default for the Wordpress mobile app to talk. There are two reasons to disable it: Not usable feature: this...
  5. K

    How can we upload files through SSH?

    For that it is must to have access of SSH. You can login to SSH by entering hostname or IP address and port of server. After that change directory in which you want to upload your files. cd domains/domain.com/public_html/ You have to enter path of your folder where you have to upload your...
  6. K

    Steps to turn off brute force notification in DirectAdmin

    As we all know about brute force attack that in this attacker will continuously submitting combinations of passwords until it correct on is found. To avoid this DirectAdmin has a feature by which system send email alerts for brute force. This sends hundreds of email which can be irritating. So...
  7. K

    What is Favicon and how to create it?

    Favicon stands for favourite icon and its available in website’s title, you can also check this in browser’s tab or history too. Favicon is also known as website icon, bookmark icon, shortcut icon, URL icon or tab icon. Favicon image has .ico extension and its dimension should be 16x16 or...
  8. K

    Debug mode in Prestashop

    There are two ways to enable debug mode in prestashop: Enable it in Prestashop admin panel Enable it manually You can do enable debug mode with prestashop admin panel and for that you can follow below steps: First login to admin panel. Choose Advanced Parameters and then Performance. Now you...
  9. K

    Steps to convert result of your PHP function var_dump() to string.

    If you want to store PHP var_dump() function’s value to any other place like in log file, external file or any other place then you can do this with PHP output buffering. If you want to save the structured variable info of $variable1 into the string $string: ob_start(); var_dump($variable1)...
  10. K

    Steps to migrate your Drupal website

    You just have to follow below steps to migrate your Drupal website: First you have to copy all files from original installation and you can use FTP for this operation. Now copy all your files to destination server with FTP. Now it’s time to import database for this dump the database with...
  11. K

    Steps to change Apache port number

    Secure port for connecting Apache webserver is 443. If you want to change default Apache port from 80 then you can follow below steps: Login to your server with root access. You cannot perform this operation without root access. Now we have to update Apache configuration file which is...
  12. K

    Steps to take backup and restore with mysqldump

    First take backup of your database with below command: #mysqldump -u username -p[username_password] databasename > /path_to_your_db/databasename_backup.sql Here you have to use your user name in place of “username”, your databasename and path of your database. You have to use below command to...
  13. K

    Error “Access to context [/] is denied!”

    If you are getting “Access to context [/] is denied!" error while accessing the website then you can solve this issue by following below steps: First you have to check the permission of root folder, folder permission should be correct. Your folder permission should be 755. If you have check...
  14. K

    How to check number of account reseller is using currently?

    You can check below steps to check number of accounts reseller Login to WHM. Now you will find option “View Reseller Usage and Manage Account Status”, click on it. Select particular reseller and click on “Submit”. Here you can check all the details about reseller, number of accounts created by...
  15. K

    Steps to limit total number of accounts reseller can create in WHM

    For this it is must to have administrator access, if you have access then you can follow below steps: Login to WHM. Click on”Edit Reseller Nameservers and Privileges”. Here you have to select checkbox “Limit the total number of accounts reseller can create” and enter the maximum number of accounts.
  16. K

    How to install MariaDB on our server?

    First you can install MariaDB with below command on server: #yum install mariadb-server OR #yum install -y mariadb mariadb-server Now restart MariaDB while booting with commands: #systemctl start mariadb.service - Restart MariaDB #systemctl enable mariadb.service - Auto run when boot With...
  17. K

    What is domain Alias and how to create it in cpanel?

    Alias feature helps you to load your website with another domain name. You can also called it Parked domain, if you create Alias fordomain then cpanel automatically redirect that domain to main domain. For example if www.domain.org is your main domain and www.domainname.com is your another...
  18. K

    What is DDNS and how to create it in cpanel?

    DDNS provides a way to automatically updating IP address for the devices like network routers, so if IP address change then cpanel updates the zone records by authenticating, and sends new IP. You can follow below steps to create it in cpanel: Login to cpanel. Click on Dynamic DNS under...
  19. K

    How to run stuck backup process using rsync?

    If you are getting below error while running backup process then you can follow below steps: /usr/bin/rsync -rlptD --exclude=lastrun/* --exclude=bwusagecache/* --exclude=serviceauth/* --exclude=dnsrequests_db/*--exclude=configs.cache/*--delete...
  20. K

    How to update Kernel on Centos ?

    You can check below steps to update Kernel on server: Login to SSH. And run below command to install update. #yum update kernel After installing it you have to reboot the server to applying changes. Reboot.
Top