What i Need
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!
You need just put one line to the terminal:
sudo apt-get install php5-intl
Open XAMPP server.
click on Apache config
button
And open php.ini
file.
Under php.ini
file search intl
And uncommented out the line.
And restart the server.
Hope this would be helpful.
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.
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.