I\'ve been trying to install Magento 2. I did load everything and with the last commands \"composer update\" or \"composer install\" I\'m having problem.
Pr
Have a look at this answer Laravel requires the Mcrypt PHP extension and the following one.
If mcrypt is not enabled open your php.ini
(see my first answer link above how to find it) and search for
;extension=php_mcrypt.so
then remove the ;
from the beginning of that line. Same procedure for the other extension.
If you are using Linux and PHP 7.0 you would use something like this:
yum install php70u-intl
I have PHP version 70u in the above example. Bu this will provide "ext-intl".
On linux I:
sudo apt-get install php7.0-mcrypt ;
sudo apt-get install php7.0-intl
Following things you can check -
For more info please have a look at this URL -
http://magentostriker.blogspot.in/2015/03/magento-2-installation.html
Hope it will help.