I'm trying to work on LDAP auth and according to the tutorials I've
read it seems like I should be able to avoid having a db table for my
model by setting $useTable = false;  For some reeason, however, this
doesn't appear to be working - I get this error: Error: Database table
users for model User was not found

/app/models/users.php:
class User extends AppModel
{
    var $name = 'User';
    var $useTable = false;
}

/app/controllers/users_controller.php
class UsersController extends AppController
{
    (login function here omitted for brevity)
}

I've just started working with Cake, and while I've been doing my best
to go through documentation and tutorials I've got a bit of a deadline
coming up.  Any help appreciated
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
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