Re: [symfony-users] [Symfony2] PR8->current: Unable to find the controller for path "/login_check"

2011-04-05 Thread Dennis Jacobfeuerborn
Yes I posted both the routing definition (which is exactly like the one you posted) and the security configuration in the first posting of this thread. Both haven't changed since the update from PR8 except for the added ^'s in the firewall patterns for the changes in PR9. Regards, Dennis --

Re: [symfony-users] [Symfony2] PR8->current: Unable to find the controller for path "/login_check"

2011-04-04 Thread oscar balladares
Hi. Did you define the route for login_check? #app/config/routing.yml _security_login: pattern: /login defaults: { _controller: YourBundle:Security:login } _security_check: pattern: /login_check _security_logout: pattern: /logout 2011/4/4 Dennis Jacobfeuerborn > On Monday,

Re: [symfony-users] [Symfony2] PR8->current: Unable to find the controller for path "/login_check"

2011-04-04 Thread Dennis Jacobfeuerborn
On Monday, April 4, 2011 11:10:26 PM UTC+2, Christophe COEVOET wrote: > > Le 04/04/2011 22:44, Dennis Jacobfeuerborn a écrit : > > > > On Monday, April 4, 2011 10:31:30 PM UTC+2, Christophe COEVOET wrote: >> >> Le 04/04/2011 22:27, Dennis Jacobfeuerborn a écrit : >> >> I just upgraded from PR8

Re: [symfony-users] [Symfony2] PR8->current: Unable to find the controller for path "/login_check"

2011-04-04 Thread Christophe COEVOET
Le 04/04/2011 22:44, Dennis Jacobfeuerborn a écrit : On Monday, April 4, 2011 10:31:30 PM UTC+2, Christophe COEVOET wrote: Le 04/04/2011 22:27, Dennis Jacobfeuerborn a écrit : I just upgraded from PR8 to the current git state but this broke the security stuff. Apparently the secur

Re: [symfony-users] [Symfony2] PR8->current: Unable to find the controller for path "/login_check"

2011-04-04 Thread Dennis Jacobfeuerborn
On Monday, April 4, 2011 10:31:30 PM UTC+2, Christophe COEVOET wrote: > > Le 04/04/2011 22:27, Dennis Jacobfeuerborn a écrit : > > I just upgraded from PR8 to the current git state but this broke the > security stuff. Apparently the security component no longer handles the > _security_check r

Re: [symfony-users] [Symfony2] PR8->current: Unable to find the controller for path "/login_check"

2011-04-04 Thread Christophe COEVOET
Le 04/04/2011 22:27, Dennis Jacobfeuerborn a écrit : I just upgraded from PR8 to the current git state but this broke the security stuff. Apparently the security component no longer handles the _security_check route? Unable to find the controller for path "/login_check". Maybe you forgot to a

[symfony-users] [Symfony2] PR8->current: Unable to find the controller for path "/login_check"

2011-04-04 Thread Dennis Jacobfeuerborn
I just upgraded from PR8 to the current git state but this broke the security stuff. Apparently the security component no longer handles the _security_check route? Unable to find the controller for path "/login_check". Maybe you forgot to add the matching route in your routing configuration? T