To enable extensions, verify that they are enabled in those .ini files - Vagrant/Ubuntu/Magento 2.0.2

后端 未结 18 609
别那么骄傲
别那么骄傲 2020-12-24 06:02

When installing Magento 2.0.2 via composer getting this error:

Problem 1
 - Installation request for magento/product-enterprise-edition 2.0.2 -> satisfiab         


        
18条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-24 06:21

    On Ubuntu 16.04 php7 is now the default, so if you follow the top answers and are still having this issue, check your php version.

    php --version
    

    If your default php version is php7, but you followed an answer using php5 packages, you can use the following command to set the default version of php to php5.6:

    sudo update-alternatives --set php $(which php5.6)
    

提交回复
热议问题