How to solve the issue - please install the “intl” extension for full localization capabilities

巧了我就是萌 提交于 2019-11-29 09:27:24

You need just put one line to the terminal:

sudo apt-get install php5-intl

If you are using XAMPP on windows here is how:

open for example c:\xampp\php\php.ini and remove the semi colon ";" in front of "extension=php_intl.dll" save the file and restart apache.

That will get solve the error message.

Done.

Extending the Answer by Michael Sivolobov, for php7 on debian 9 /stretch

sudo apt-get install php7.0-intl

or simply

sudo apt-get install php-intl

then

sudo service apache2 restart

Thanks!

When I tried to install intl on Ubuntu 16.04 with:

sudo apt-get install php5-intl

I've got an error like:

error: Unable to detect ICU prefix or no failed. Please verify ICU install prefix and make sure icu-config works. ERROR: `/tmp/pear/temp/intl/configure --with-php-config=/usr/bin/php-config --with-icu-dir=DEFAULT' failed

In order to solve the problem I needed to install:

sudo apt-get install libicu-dev

and after that install

sudo apt-get install php5-intl

That solved my problem.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!