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

后端 未结 11 1686
温柔的废话
温柔的废话 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 21:58

    This solution is correct for me: https://stackoverflow.com/a/39782535/2400373

    But If you do not have access to the terminal, you can enter the server and delete the folders that are inside var/cache.

    Another solution if you have access to the console is to type

    #rm -rf var/cache/*
    

    or

    $sudo rm -rf var/cache/*
    

    this solution works on symfony 3

提交回复
热议问题