0

Im trying to install magento using XAMPP and im getting the following errors in the attached screen print. Can anybody help?

https://i.stack.imgur.com/3BaGl.jpg

Doddsy
  • 47
  • 2
  • 8

3 Answers3

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
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