Well, I'm just starting on CakePHP and I have a problem I must solve
really quick.
I'm only working on one table, one model, one controller, one view.

I've tried to implement the Auth $component but everytime I click
'Login', it shows nothing.
So I don't even know if it's even recognizing my form data or not.



1) This is my user.php model:

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



2) This is my users_controller.php:

<?php
        class UsersController extends AppController {
                var $name = 'Users';
                var $components = array('Auth');

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" 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