Failed user login on production server using Symfony framework (Authentication request could not be processed due to…)

后端 未结 11 1688
温柔的废话
温柔的废话 2021-01-07 21:35

I\'am using Symfony for a project and I have been trying to get the login to work on production server with no success for the past 2 days. I keep getting the error

11条回答
  •  再見小時候
    2021-01-07 22:21

    I'm sure that this error is too generic. In my case, The follow is incorrect:

    class: App/Entity/User;
    

    Correction:

    class: App\Entity\User;
    

提交回复
热议问题