Installing Magento giving php error extension

-1

I'm running the installation of Magento 2.0.1 on xampp v3.2.2, and when it will check php extension the following error appears as shown below:

Has anyone experienced this problem can help?

    
asked by anonymous 11.12.2017 / 20:40

1 answer

1

Go to php.ini in Xampp, and look for the lines (if it's Windows):

;extension=php_xsl.dll
;extension=php_soap.dll
;extension=php_intl.dll
  

If it is in Windows open the php.ini by notepad ++ or sublimetext, in Windows Notepad will not open right due to wrapping lines

If it's Linux / Mac

;extension=xsl.so
;extension=soap.so
;extension=intl.so

If it's PHP7.2:

;extension=xsl
;extension=soap
;extension=intl

Then remove ; from the front and save php.ini , it should be like this (windows):

extension=php_xsl.dll
extension=php_soap.dll
extension=php_intl.dll

If it's Linux / Mac

extension=xsl.so
extension=soap.so
extension=intl.so

If it's PHP7.2:

extension=xsl
extension=soap
extension=intl

Then I restarted Apache from the Xampp panel

    
11.12.2017 / 21:13