How To Install php-ezc-Webdav on CentOS 7

In this tutorial we learn how to install php-ezc-Webdav on CentOS 7. php-ezc-Webdav is Set up and run your own WebDAV server

Introduction

In this tutorial we learn how to install php-ezc-Webdav on CentOS 7.

What is php-ezc-Webdav

The Webdav component enables you to easily set up a WebDAV-enabled HTTP server. Users can then create and edit site content by uploading and downloading files to and from their desktop. The current implementation is compatible with RFC 2518 and realizes most parts of the changes defined in RFC 4918. It also supports clients that do not conform to the standard and provides an interface to support these clients. The component is intended to support you by providing access to your data through the HTTP 1.1 protocol. The data can be stored in the file system, or any other custom data storage. It is then served as a virtual directory tree to the user.

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

Install php-ezc-Webdav on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install php-ezc-Webdav using yum by running the following command:

sudo yum -y install php-ezc-Webdav

Install php-ezc-Webdav 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 php-ezc-Webdav using dnf by running the following command:

sudo dnf -y install php-ezc-Webdav

How To Uninstall php-ezc-Webdav on CentOS 7

To uninstall only the php-ezc-Webdav package we can use the following command:

sudo dnf remove php-ezc-Webdav

References

Summary

In this tutorial we learn how to install php-ezc-Webdav on CentOS 7 using yum and dnf.