Dependency issue trying to install php-mbstring on ec2

后端 未结 2 1534
清酒与你
清酒与你 2021-02-03 20:31

I am trying to install yii2 on my Amazon Linux AMI instance, it requires the php-mbstring extension to work.

When I tried to run sudo y

相关标签:
2条回答
  • 2021-02-03 20:56

    It seems you have php 5.6 installed.
    You need to install mbstring for that particular version of php.

    Run sudo yum install php56-mbstring

    After that it might be a good idea to restart apache (thanks! @hexicle),
    using sudo service httpd restart

    0 讨论(0)
  • 2021-02-03 21:02

    Amazon Linux AMI release 2017.09

    sudo yum install php70-mysqlnd
    sudo service httpd restart
    
    0 讨论(0)
提交回复
热议问题