Magento error: “PHP extension soap must be loaded”

kumkumsharma

Administrator
Staff member
If you are getting “PHP extension soap must be loaded” error while installing Magento then you can follow below steps:

First you have to check soap extension is installed or not on server, for that you can use below command:

Code:
php -m | grep soap
Here you will get “soap” output.

If you will not get above output then you have to install soap on your server and for that you have to use below command:

Code:
yum install php-soap
 
Top