Im trying to install magento using XAMPP and im getting the following errors in the attached screen print. Can anybody help?
Asked
Active
Viewed 3,097 times
3 Answers
2
For removing "PHP Extension intl" error, we have to enable PHP Extension intl , follow the Steps..
Open the xampp/php/php.ini file in any editor.
Search ";extension=php_intl.dll"
kindly remove the starting semicolon ( ; )
Like :
;extension=php_intl.dll
to
extension=php_intl.dll
Save the xampp/php/php.ini file.
Restart your xampp/wamp
Hope its work..Cheers..

Amarendra Kumar
- 858
- 9
- 16
-
@SavanDholu , may i know the process you followed? have you restart your xampp/wamp? – Amarendra Kumar Mar 06 '17 at 09:28
-
Yes, Same process i have follow but again not working. and restart xampp. Check this image. https://i.stack.imgur.com/twA2q.png – Savan Dholu Mar 06 '17 at 10:23
-
This is not the issue of php_intl.dll. here another dll file missing so you need to add msvcp140.dll file. https://www.dllme.com/dll/files/msvcp140_dll.html https://www.dll-files.com/msvcp140.dll.html https://fix4dll.com/msvcp140_dll – Amarendra Kumar Mar 06 '17 at 10:42
-
-
Please follow instructions.. https://fix4dll.com/how_to_install_dll_files – Amarendra Kumar Mar 06 '17 at 11:10
-
Let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/137330/discussion-between-amarendra-kumar-and-savan-dholu). – Amarendra Kumar Mar 06 '17 at 11:16
0
Here is all command lines to install magento2
PHP Extension xsl and intl. CMD
sudo apt-get install php5-intl
sudo apt-get install php5-xsl
sudo php5enmod xsl
sudo service apache2 restart
PHP Extension mcrypt. CMD
sudo updatedb
locate mcrypt.ini
sudo php5enmod mcrypt
sudo service apache2 restart

Ashish Pathak
- 827
- 8
- 16
-1
To enable intl extension replace
;extension=php_intl.dll
with
extension=/php_intl.dll
(simply remove semicolon & then restart your server)

GunJan Mehta
- 312
- 2
- 11