gpt4 book ai didi

php - FOSUserBundle 重置密码不适用于模拟用户配置

转载 作者:搜寻专家 更新时间:2023-10-31 21:50:11 24 4
gpt4 key购买 nike

我正在使用带有 FOSUserBundle 2.0 的 Symfony 3.3。我无法使用重置密码功能。我转到请求重置页面,输入电子邮件或用户名,然后单击提交,它将我重定向到登录页面, View 中没有显示任何错误。我查看了日志,它给了我这个错误:

security.DEBUG: Access denied, the user is not fully authenticated; redirecting to authentication entry point. {"exception":"[object] (Symfony\\Component\\Security\\Core\\Exception\\AccessDeniedException(code: 403): Access Denied. at .../vendor/symfony/symfony/src/Symfony/Component/Security/Http/Firewall/SwitchUserListener.php:125)"} []

安全.yml:

security:
encoders:
FOS\UserBundle\Model\UserInterface: sha512

{...}

firewalls:
main:
pattern: ^/
form_login:
provider: fos_userbundle
csrf_token_generator: security.csrf.token_manager
default_target_path: /verifInit
logout: true
anonymous: true
switch_user:
role: ROLE_ADMIN
provider: fos_userbundle
parameter: username
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false

providers:
in_memory:
memory:
users:
user: { password: userpass, roles: [ 'ROLE_USER' ] }
admin: { password: adminpass, roles: [ 'ROLE_ADMIN' ] }
fos_userbundle:
id: fos_user.user_provider.username

access_control:
- { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/admin/, role: ROLE_ADMIN }

当我删除 security.yml 中的 switch_user 部分时,它运行良好。你知道为什么吗?我的项目需要 switch_user 功能,所以我无法删除它。

最佳答案

switch_user: true

security:
role_hierarchy:
ROLE_ADMIN: [ROLE_USER, ROLE_ALLOWED_TO_SWITCH]

试试这个方法。

关于php - FOSUserBundle 重置密码不适用于模拟用户配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45695492/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com