Symfony:更新后的ServiceNotFoundException

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

将我的Symfony项目从3.2。*更新到3.3。*我遇到了这个例外:

ServiceNotFoundException
The service "fos_user.profiler.controller" has a dependency on a non-existent service "fos_user.email_update_confirmation".

所以你们知道这些步骤:

1-为了优化性能,我启动了这个命令:

composer dump-autoload --optimize --no-dev --classmap-authoritative

2-我从3.2。*升级到3.3。* 3-执行与第一步相同的命令

在此之后我遇到了这个例外!!

symfony
1个回答
1
投票

这是众所周知的问题。 GH的公关之一解决了它。现在修复它添加

fos_user:
    registration:
        confirmation:
              enabled: true

在配置中。当然,如果您在配置中存在fos_user,请添加缺少的内容。

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