BadCredentialsException Symfony2

时间:2016-03-21 20:24:11

标签: symfony fosuserbundle

我正在努力将现有项目从2.0.1更新到2.8.3。我知道这是一个很大的跳跃,但我有很多工作。

我似乎无法让FOS用户包正常工作。每当我输入正确的用户名/密码时,我都会收到BadCredentialsException,并显示以下消息:"凭据错误。"

这是我的security.yml

security:

    providers:
        in_memory:
            memory: ~
        fos_userbundle:
            id: fos_user.user_manager

        dev:
            pattern: ^/(_(profiler|wdt)|css|images|js)/
            security: false

        main:
            form_login:
                always_use_default_target_path: true
                login_path:  /login
                check_path:  /login_check
                #success_handler: authentication_handler
                #failure_handler: authentication_handler
                csrf_provider: form.csrf_provider
                remember_me:  true
            anonymous: ~

            # http_basic: ~

        # form_login: ~

思考?意见?感谢。

0 个答案:

没有答案