Im working on a symfony project. Im battleling with a form that won\'t redirect to its own page. The action attribute is set to \"\" and method set to post. In that case it shou
You need to explicitly allow POST for the route. Change your route to:
stories_detail: url: /stories-of-the-month/:slug class: sfDoctrineRoute param: { module: stories, action: detail} options: { model: Article, type: object, method: doSelectForSlug } requirements: sf_method: [get, post]