Hello,

Quick question I have the following:

niches_controller.php
<?php
class NichesController extends AppController {
    var $name = 'Niches';
    var $scaffold;
}
?>

Calling it by www.domain/cake/niches  errors out with complaining
about missing model:

Missing Model
No class found for the Nich model.
Fatal: Create the class below in file: app/models/nich.php Etc...

But I have

niche.php
<?php
class Niche extends AppModel
{
var $name = 'Niche';
}
?>

I don't understand why the exact same works with Movie - Movies  but
not this Niche - Niches ??

What is the best way to deal with this errors?

Thank you,

Andras Kende
http://www.kende.com

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

Reply via email to