Magento installation giving php error Extension

Asked

Viewed 525 times

-1

I am running Magento 2.0.1 installation on xampp v3.2.2, and when you will check php Extension the following error appears as the image below:

Erro de php Extension

Someone has already been through this problem can help?

  • 1

    Enable these extensions in php.ini and restart apache should already work. So remver the ; of the lines.

  • On the PHP website it shows the ways to install each library: http://php.net/manual/en/book.xsl.php , http://php.net/manual/en/book.intl.php , http://php.net/manualpt_BR/booksoap.php

1 answer

1


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

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

If you are on Windows open php.ini by Notepad++ or sublimetext, in Windows notepad it will not open right due to line breakage

If it’s Linux/Mac

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

If it is PHP7.2:

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

So take out the ; from the front and save the php.ini, should look 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 is PHP7.2:

extension=xsl
extension=soap
extension=intl

So I restarted Apache from the Xampp panel

Browser other questions tagged

You are not signed in. Login or sign up in order to post.