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

后端 未结 11 1685
温柔的废话
温柔的废话 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:16

    Currently there is a bug in Symfony and on production IF during authentication system error occurs (missing table, missing column or any other exception) - it's logged as INFO instead of ERROR and with default error logging options it's not logged at all.

    https://github.com/symfony/symfony/pull/28462

    I think there are two options right now - temporary log everything (including INFO) on production until you find the real error.

    Second option: use this patch or debug directly on production.

提交回复
热议问题