我已经在mampp下成功地迁移了我的TYPO3 v10站点。现在我得到了一个例外:
Doctrine\DBAL\ exception \ConnectionException驱动程序中发生异常:拒绝用户“dbxx”@“localhost”的访问
我的配置条目如下:
'DB' => [
'Connections' => [
'Default' => [
'charset' => 'utf8mb4',
'dbname' => 'mysite_f10',
'driver' => 'mysqli',
'host' => 'localhost',
'password' => 'root',
'tableoptions' => [
'charset' => 'utf8mb4',
'collate' => 'utf8mb4_unicode_ci',
],
'user' => 'root',
],
],
],
是否有可能,TYPO3仍然将我的旧数据库值存储在缓存中?如果,我如何手动清除缓存?
发布于 2022-01-26 19:51:55
任何地方都不会缓存数据库凭据。我假设您更改了LocalConfiguration.php
中的值。如果在与AdditionalConfiguration.php
相同的目录中有一个名为LocalConfiguration.php
的文件,您应该检查您的安装。该文件中的所有值都会覆盖来自LocalConfiguration.php
的值。
https://stackoverflow.com/questions/70867277
复制相似问题