Displaying 2 results from an estimated 2 matches for "2f95".
Did you mean:
2.95
2007 Dec 28
1
Getting wrong route - fairly complete error description
...------------------------------
<%= button_to "Done", :url => complete_person_task_path(task), :method
=> :put -%>
-------------------------------
Which generates this URL:
-------------------------------
http://127.0.0.1:3000/people/9?method=put&url=%2Fpeople%2F9%2Ftasks%2F95%2Fcomplete
-------------------------------
Which gives the following error:
-------------------------------
Unknown action
No action responded to 9003000000071902
-------------------------------
So obviously the route is not tagging on the custom nested route I have made.
So I disabled the &quo...
2007 Dec 28
1
Rake routes & console showing one thing, app doing another
...------------------------------
<%= button_to "Done", :url => complete_person_task_path(task), :method
=> :put -%>
-------------------------------
Which generates this URL:
-------------------------------
http://127.0.0.1:3000/people/9?method=put&url=%2Fpeople%2F9%2Ftasks%2F95%2Fcomplete
-------------------------------
Which gives the following error:
-------------------------------
Unknown action
No action responded to 9
-------------------------------
So obviously the route is not tagging on the custom nested route I
have made.
So I disabled the "default"...