-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
Enable these extensions in php.ini and restart apache should already work. So remver the
;
of the lines.– rray
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
– Don't Panic