几个小时后,我得到了一个有效的LDAP登录,基于2015年11月11日的“新”symfony2 ldap组件(see here)。我也跟着关于log out的文档。 但每当我要求退出功能时,似乎都没有发生。用户仍然登录。
这是我的代码:
应用程序/配置/ security.yml
security:
firewalls:
main:
pattern: ^/
stateless: true
http_basic_ldap:
service: service.key
dn_string: "{username}@example.tld"
logout:
path: /logout
捆绑/资源/配置/ routing.yml中
vendor_bundlename_logout:
path: /logout
根据this的问题,我的问题是: 我是否必须使用incorret登录凭据自行管理注销?或者我是否错过了在security.yml中配置注销方面的内容?