Missing Method in UsersController

You are seeing this error because the action profile is not defined in controller UsersController

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

Fatal: Confirm you have created the UsersController::profile() in file : app/controllers/users_controller.php

<?php
class UsersController extends AppController {
   function profile() {
   }

}
?>