magento 2 not installation any one help me
Error.....
é só copiar o erro e incluir no final do arquivo PHP.INI que ele para de ocorrer este erro.
sharadsriv answer works thx dear friend.and remember to restart the server
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
Sorry, but that is still not helping me...
Still the same php_intl.dll problem.. Help me
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.
Still not working!!!
So what you need to so is just enable the extension for that
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"
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.