Installing with Composer - php extensions: ext-mcrypt * and ext-intl * missing from your system on XAMPP

前端 未结 4 1607
灰色年华
灰色年华 2020-12-20 06:41

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         


        
相关标签:
4条回答
  • 2020-12-20 07:26

    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.

    0 讨论(0)
  • 2020-12-20 07:27

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

    0 讨论(0)
  • 2020-12-20 07:32

    On linux I:

    sudo apt-get install php7.0-mcrypt ;
    sudo apt-get install php7.0-intl
    
    0 讨论(0)
  • 2020-12-20 07:35

    Following things you can check -

    • Apache Version: 2.2 or 2.4 and Enable: mod_rewrite.mod_rewrite enables the server to perform URL rewriting.
    • PHP: 5.4.x where x = 11 or later 5.5.x and
    • Enable PHP Extension: PDO/MySQL,mbstring, mcrypt, mhash, simplexml, curl, gd2, ImageMagick 6.3.7 (or later) or both soap and
    • add xdebug.max_nesting_level=50000; at php.ini
    • MySQL Version : 5.6.x and upper

    For more info please have a look at this URL -

    http://magentostriker.blogspot.in/2015/03/magento-2-installation.html

    Hope it will help.

    0 讨论(0)
提交回复
热议问题