Missing Method in OrderController

You are seeing this error because the action index is not defined in controller OrderController

If you want to customize this error message, create app/views/errors/missing_action.thtml.

Fatal: Confirm you have created the OrderController::index() in file : app/controllers/order_controller.php

<?php
class OrderController extends AppController {
   function index() {
   }

}
?>