cancel
Showing results for 
Search instead for 
Did you mean: 

Missing PHP extension intl

SOLVED

Re: Missing PHP extension intl

 

magento 2 not  installation any one help me 

 

magento2 

Error.....

 

 

Re: Missing PHP extension intl

é só copiar o erro e incluir no final do arquivo PHP.INI que ele para de ocorrer este erro.

Re: Missing PHP extension intl

sharadsriv answer works thx dear friend.and remember to restart the server

Re: Missing PHP extension intl

Hi,onevishal

issue : Your current setting of xdebug.max_nesting_level=100. Magento 2 requires it to be set to 200 or more.

 

Solution :  go to  php.ini  and find xdebug

 

 

you will get following lines 

 

xdebug.remote_enable = off
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"
xdebug.show_local_vars=0

 

add the below line with that.


xdebug.max_nesting_level=50000;

 

and restart web server it will works

Re: Missing PHP extension intl

Sorry, but that is still not helping me...

  1. I removed semicolon ";"
  2. copied all the .dll files... 

Still the same php_intl.dll problem.. Help me

Re: Missing PHP extension intl

Hi Dmitry,

 

I am trying to install magento on my mac ( el capitan ) . I am using XAMPP. I get the same error php while doing readiness check.

Missing PHP intl extension. intl extension is installed already. Please help.

Re: Missing PHP extension intl

Still not working!!!

Re: Missing PHP extension intl

So what you need to so is just enable the extension for that 

  1. open your php.ini file
  2. find for ;extension=php_intl.dll
  3. remove the comment ;

Re: Missing PHP extension intl

This fixed the missing PHP extension intl in the php.ini for me, and dont forget to put a php.ini also in the setup folder .....

 

extension_dir = "/usr/local/lib/php_modules/5-56LATEST"
extension = "intl.so"

 

 

Re: Missing PHP extension intl

icudt.dll
icudt46.dll
icuin.dll
icuin46.dll
icuio.dll
icuio46.dll
icule.dll
icule46.dll
iculx.dll
iculx46.dll
icutest.dll
icutest46.dll
icutu.dll
icutu46.dll
icuuc.dll
icuuc46.dll

 

Search mask: icu*.dll


From:

<wamp_installation_path>/bin/php/php5.4.3/
To:

<wamp_installation_path>/bin/apache/apache2.2.22/bin/
And you also need to enable intl in php.ini file (uncomment this line):

;extension=php_intl.dll
And restart the server. It should works fine.

Of course, you need to replace the folder names with your own.