Re: Missing View Error: The view for UsersControllerController::login() was not found.

2011-12-15 Thread AD7six
On Dec 14, 8:07 pm, Parthasarathy Ramanujam wrote: > Isn't the default routing mapping forRL say /users/login = > UsersController->login(); Why then does my app get an additional Controller > suffix appended? Look at the error message - it's saying it can't find a view file, it found your contr

Re: Missing View Error: The view for UsersControllerController::login() was not found.

2011-12-14 Thread Miloš Vučinić
changing this line: > > > Router::connect('/', array('controller' => 'pages', 'action' => > >  'display', 'home')); > > > to > > > Router::connect('/', array('controller' => 'users&

Re: Missing View Error: The view for UsersControllerController::login() was not found.

2011-12-14 Thread Parthasarathy Ramanujam
'controller' => 'pages', 'action' => > 'display', 'home')); > > to > > Router::connect('/', array('controller' => 'users', 'action' => 'login')); > > However I now

Missing View Error: The view for UsersControllerController::login() was not found.

2011-12-14 Thread Parthasarathy Ramanujam
27;, array('controller' => 'pages', 'action' => 'display', 'home')); to Router::connect('/', array('controller' => 'users', 'action' => 'login')); However I now get the error *Missing Vi