0

我一直在尝试让数据库登录系统与 Symfony2 一起工作。我已经阅读了文档,但我现在完全不知道该怎么做......

每次我尝试登录时,我都会得到“坏凭据”。

实现 UserInterface 的“用户”类在这里:

http://pastebin.com/9uzbwM9v

'UserRepository' 类在这里:

http://pastebin.com/Gn0AbZb4

“security.yml”文件在这里:

http://pastebin.com/50FUNnbq

数据库方案是这样的:

http://pastebin.com/5nj0rXhs

我只是不知道从这里去哪里......:L我一直在环顾四周,但我只是没有在教程中得到一些其他的东西,也许这只是一天中的时间!这是漫长的一周……

任何帮助将不胜感激。

4

1 回答 1

1

乍一看,您的loadUserByUsername方法中有一个小错字:

->where('u.account_name = :usefdgdfgfrname OR u.account_email = :email')

应该:

->where('u.account_name = :username OR u.account_email = :email')
于 2012-10-21T22:07:58.090 回答