Enable PHP Extension for Installing Magento 2 on Xampp

magento2php-7

I am trying to install Magento2 on Xampp and got some php extensions errors that are not enables. Please help me to enable these enable following php extensions.

  1. PHP Extension xsl.
  2. PHP Extension intl.
  3. PHP Extension soap.

Thanks.

Best Answer

  1. Check php.ini file. This is normally under your xampp folder (Example D:\xampp\php)

  2. Search like php_soap.dll;,php_xsl.dll,php_intl.dll each dll extension

  3. removing the first ; character, to make it looks like

extension=php_soap.dll

extension=php_xsl.dll

extension=php_intl.dll

  1. Once done restart Apache server.
Related Topic