Magento – PHP Extension intl. missing for magento v 2.2.25

installationmagento2

I've removed the comment from php.ini file
;extension=php_intl.dll like this
extension=php_intl.dll still it's showing thatPHP Extension intl is missing.enter image description here

Best Answer

Execute this command if you are using ubuntu/linux :

sudo apt-get update

Then,

For php5 version :

sudo apt-get install php5-intl

For php7 version :

sudo apt-get install php7.0-intl

For php7.2 version :

sudo apt-get install php7.2-intl

Restart server :

sudo service apache2 restart

For windows :

C:\wamp\bin\php\php{version}, copy all the files that looks like icu*.dll and paste them into the apache bin directory C:\wamp\bin\apache\apache{version}\bin.

Then restart all services

Related Topic