我使用FOSuserbunble,一切正常,现在用于 app_dev.php /登录 我有一个“访问此资源需要完全身份验证”。 500内部服务器错误 - InsufficientAuthenticationException 1个链接的异常:AccessDeniedException»
我的security.yml是
ggplot(summary.m, aes(x=reorder(Var1,value, FUN=sum),y=value)) + geom_bar(stat="identity") +
theme_bw(base_size=8) +
theme(axis.text.x = element_text(colour = "black",angle=90 ))
安全性: 编码器: OandP \ UserBundle \ Entity \ User:sha512
# you can read more about security in the related section of the documentation
如果有人有想法 非常感谢你的帮助
答案 0 :(得分:0)
您尚未在您的网站上设置任何access_control:
access_control:
- { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/profile, role: ROLE_USER }