Tagged Questions
6
votes
4answers
4k views
Symfony2 http_basic security configuration problem
I use Symfony Standard 2.0.0BETA1 and tried to configure http_basic authentication exactly the same as in this book chapter
security:
encoders:
Symfony\Component\Security\Core\User\User: ...
0
votes
0answers
184 views
Basic HTTP Authentication in Silex app
I'm trying to setup Basic HTTP Authentication in a Silex app I'm working on. I thought this would be a no-brainer but I feel like I've gone down a rabbit hole. I've read a number of posts relating ...
0
votes
0answers
215 views
http basic authentication error in symfony
In my project (a web API) done with Symfony 2.2 I have set http basic authentication. It works ok locally (tested in windows last XAMPP stable release and mysql db in a local mac with Lion), so I ...
2
votes
1answer
710 views
symfony2 / FOSRestBundle: No HTTP status codes
I want to access a REST webservice which is provided by symfony2 and FOSRestBundle. I use HTTP Base Authentication. Unfortunately i cannot figure out, how to get the HTTP codes 401 and 403 back, if ...
3
votes
1answer
993 views
Symfony2 security.yml: http basic auth is returning 500 instead of 401
I'm trying to set-up a very simple http-basic authentication with symfony 2. Unfortunatley I keep getting an 500 HTTP error code AccessDeniedException: Access Denied, instead of 401, which would force ...
3
votes
1answer
1k views
Symfony2 + FOSUserBundle: http_basic authentication works, http_digest fails
I'm configuring a Symfony2 application using the FOSUserBundle to use http_digest authentication. This is with Symfony 2.1.0-BETA2.
In security.yml, I am simply switching out http_basic for ...