In my Rails 3 production.log I see some errors like:
AbstractController::ActionNotFound (The action ‘images’ could not be found for ClientsController)
I don’t notice anything going wrong. I searched for any call to ‘images’ and ‘AbstractController’ in my project but no clue.
What does this error mean and what does the AbstractController do?
Txs in advance
The error means you are missing a method
imagesin yourClientsController? Or at least: tried to access that.The
AbstractControlleris a class inside Rails which serves as a base for every controller. YourApplicationControllerderives from it.