Below are steps to install Soap module in PHP 7 on Ubuntu .
Command to check Soap is installed or not.
apt-cache search php | grep -i soap
If not first install it by running below commands
sudo apt-get install php7.0-soap
To enable soap module run below command, after installing
sudo service php7.0-fpm reload
No comments