How To Install drupal7-webform on CentOS 7

In this tutorial we learn how to install drupal7-webform on CentOS 7. drupal7-webform is Enables the creation of forms and questionnaires

Introduction

In this tutorial we learn how to install drupal7-webform on CentOS 7.

What is drupal7-webform

Webform is the module for making forms and surveys in Drupal. After a submission, users may be sent an e-mail “receipt” as well as sending a notification to administrators. Results can be exported into Excel or other spreadsheet applications. Webform also provides some basic statistical review and has an extensive API for expanding its features. Some good examples could be contests, personalized contact forms, or petitions. Each of these could have a customized form for end-users to fill out. If you need to build a lot of customized, one-off forms, Webform is a more suitable solution than creating content types and using CCK or Field module. Explanation of Webform vs. CCK (or Fields) [1]. This package provides the following Drupal 7 module * webform [1] http

We can use yum or dnf to install drupal7-webform on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install drupal7-webform.

Install drupal7-webform on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install drupal7-webform using yum by running the following command:

sudo yum -y install drupal7-webform

Install drupal7-webform on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install drupal7-webform using dnf by running the following command:

sudo dnf -y install drupal7-webform

How To Uninstall drupal7-webform on CentOS 7

To uninstall only the drupal7-webform package we can use the following command:

sudo dnf remove drupal7-webform

References

Summary

In this tutorial we learn how to install drupal7-webform on CentOS 7 using yum and dnf.