数据库连接不起作用-Symfony 1.4

问题描述 投票:0回答:1

enter image description here

我正在使用symfony 1.4开发的旧版应用程序。我正在尝试在计算机中设置旧的symfony项目。但是,当我运行该项目时,出现以下问题。我的数据库身份验证已在以下database.yml文件中提供。

   all
      doctrine:
          class: sfDoctrineDatabase
          param:
              dsn: 'mysql:host=127.0.0.1;dbname=cirrenaivs'
              username: root
              password: my_secret_pw_shh

感谢某人对这个问题的建议。

php doctrine symfony-1.4 legacy-code
1个回答
0
投票

您需要安装PHP mysql扩展。根据您使用的操作系统,您可能可以在Dockerfile中添加类似sudo yum install php-mysql的内容。

© www.soinside.com 2019 - 2024. All rights reserved.