Hi all.
I recently decided that I got to get trained up in using a php
framework as up till now Ive been handcoding everything, and Ive been
told that its very inefficient! smile.gif

So I installed the latest version of cake on my windows vista machine
running WAMP.

I got the welcome page showing up ok saying that everything is working
fine etc. but when I went to do my first tutorial I got the follwing
error:


Error: Controller could not be found.


The tutorial I was doing is 
http://www.sitepoint.com/article/applicati...opment-cakephp/

Ive got as far as defining the data base and

note.php into apps/models


<?php
class Note extends AppModel
{
var $name = 'Note';
}
?>

notes_controller.php into apps/controllers

<?php
class NotesController extends AppController
{
var $name = 'Notes';
var $scaffold;
}
?>


as far as I can make out if I call note I should get the scaffolding
page, but instead I get the error saying:
Error: Controller could not be found.

Any ideas on what might be wrong? or on what to try to resolve it?

Thanks

Beedge

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to