I just started working with Rails 2.2.2 and I don't seem to be having
much luck with the new routing scheme. When I try to edit a record
and save it I get and error message that looks as though it is trying
to use the id for the action. So just what am I doing wrong?
No action responded to 8. Actions: check_authorization, create,
destroy, edit, index, logged_in?, make_profile_vars, nav_link, new,
paginate, paginated?, param_posted?, protect, show, text_field_for,
and update
That's a rather strange error considering you're not even trying to
redirect to :show after an update, but rather just :index.
Further strange are the actions it says are valid:
check_authorization, create,
destroy, edit, index, logged_in?, make_profile_vars, nav_link, new,
paginate, paginated?, param_posted?, protect, show, text_field_for,
and update
What is the URL that results in this error? Do you have some other
plugins that might be adding these other actions?