I have the following in my app/frontend/config/routing.yml
:
homepage: url: / param: { module: main, action: index } default_index: url: /:module param: { action: index } default: url: /:module/:action/* sf_guard_register: url: /register param: { module: user, action: register } sf_guard_signin: url: /login param: { module: sfGuardAuth, action: signin } sf_guard_signout: url: /logout param: { module: sfGuardAuth, action: signout } sf_guard_password: url: /request_password param: { module: sfGuardAuth, action: password }
When I try the /register
route, I get this:
Action "register/index" does not exist.
I should specify, I don't have a "register" module, and my user module is working well if called manually. Plus the other routes are working fine.
Any ideas are welcomed, thank you!