Search results

  1. K

    Creating Articles and Pages in Drupal: A Complete Tutorial

    If you’re using Drupal to power your website, you can create articles and pages effortlessly. But there’s a slight learning curve involved. In this guide, learn how to add articles and pages to your Drupal website. Difference between Articles and Pages Many people refer to articles and pages...
  2. 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)...
  3. 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...
  4. K

    A Quick Guide to Installing Drupal Manually

    Many business owners use Drupal to build their website on. You do not have to understand the nitty-gritty of coding and still create a powerful e-commerce or any other type of website. If you’re just getting started with this powerful content management framework, then this article is for you...
  5. K

    Drupal Menus Editing Process

    Day by day you will be developing your website; simultaneously it's a must for you to make necessary changes in Drupal menus too. A visitor gets more knowledge when they make a change in their website by adding links or pages to the website. You can even say it as maintaining a website with...
  6. K

    The message may not be delivered; Considered as spam

    The email which you sent is not delivered to your recipient. It is indicated as “Spam”. Technically its shows a 505 error and so, you will get messages that it was rejected by local scanning code. You can consider it as positive as well as negative. Yes! You are being protected from blacklisting...
  7. K

    SSH Dedicated Server Connectivity

    Connecting your dedicated server using SSH might be a difficult task for you! It requires minimal work of command-line interface execution. The first step is to add your IP address to the firewall and so, you can connect dedicated server easily. How to add IP to the firewall? Step 1: Take a...
  8. K

    SSH Keys Generation

    SSH permits the webserver to access the (CLI) command-line interface. It provides you with a perfect remote connection and security for the webserver. SSH program has two setups such as SSH key pairs and SSH keys to get connected using a password. You can even say it is a challenge in...
  9. K

    How to Fix the Failed to Load Resource Error in WordPress?

    WordPress is known for its simplicity and responsiveness. But at times, you will find a file or resource fails to load. If you’re seeing this error for the first time, you won’t be able to grasp why the error occurs in the first place. In this article, we explain in detail how to fix the “Failed...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. 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.
  15. 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...
  16. K

    A Complete Guide to Installing MariaDB on Your VPS

    If you’re want to start building your application, a database is a prerequisite. Many developers opt for MariaDB because of the various benefits on offer. If you want to install MariaDB on your Virtual Private Server or Dedicated Server, then this article is for you. You can do so using the...
  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