cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 2 migration tool installation error

Magento 2 migration tool installation error

time of installing migration tool in magento2.2.7 getting error  vertex/sdk 1.0.0 requires ext-soap * -> the requested PHP extension soap is missing from your system.But soap is already installed and enabled. Attached error and phpinfo screen shot. Please help1.png2.png

1 REPLY 1

Re: Magento 2 migration tool installation error

Hello,
The issue appears because, when you are installing the module using the composer, you should also define from which php the composer should run. This case arrises when different php are installed.
Check the php which you are using by command :

which php
php -v

After that mention the php path before the composer like :

/opt/lampp/bin/php composer require vendor/module-name

OR

/vendor/composer/composer/bin/composer require vendor/module-name


Problem solved? Click Kudos and "Accept as Solution".