Dependency issue trying to install php-mbstring on ec2

后端 未结 2 1535
清酒与你
清酒与你 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

提交回复
热议问题