Shopware installation error: Identifier DB not initialized yet
Shopware installation error: Identifier DB not initialized yet
安装向导完成后出现此错误。
Slim 应用程序错误
由于以下错误,应用程序无法 运行:
详情
Type: RuntimeException
Message: Identifier DB not initialized yet
File: /.../recovery/install/src/ContainerProvider.php
Line: 162
有没有我可以设置数据库参数的配置文件?我已经通过安装向导插入了所有参数。
在文件 recovery/install/src/ContainerProvider 中。php
添加 2 个字符串:
- 在使用部分
use Shopware\Recovery\Update\Utils;
2.Inside 寄存器函数:
$container['db'] = function ($c) {
$conn = Utils::getConnection(SW_PATH);
return $conn;
};
安装向导完成后出现此错误。
Slim 应用程序错误 由于以下错误,应用程序无法 运行:
详情
Type: RuntimeException
Message: Identifier DB not initialized yet
File: /.../recovery/install/src/ContainerProvider.php
Line: 162
有没有我可以设置数据库参数的配置文件?我已经通过安装向导插入了所有参数。
在文件 recovery/install/src/ContainerProvider 中。php 添加 2 个字符串:
- 在使用部分
use Shopware\Recovery\Update\Utils;
2.Inside 寄存器函数:
$container['db'] = function ($c) {
$conn = Utils::getConnection(SW_PATH);
return $conn;
};