- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Missing PHP extension intl
magento 2 not installation any one help me
Error.....
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Missing PHP extension intl
é só copiar o erro e incluir no final do arquivo PHP.INI que ele para de ocorrer este erro.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Missing PHP extension intl
sharadsriv answer works thx dear friend.and remember to restart the server
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Missing PHP extension intl
Sorry, but that is still not helping me...
- I removed semicolon ";"
- copied all the .dll files...
Still the same php_intl.dll problem.. Help me
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Missing PHP extension intl
Still not working!!!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Missing PHP extension intl
So what you need to so is just enable the extension for that
- open your php.ini file
- find for ;extension=php_intl.dll
- remove the comment ;
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.