Hi guys, i downloaded cakephp 1.3 and follow the CakePHP 1.3 App Dev
CookBook on creating an application with authentication.
I create the AppController class and set the $components in this
following settings:
        public $components = array(
                'Auth' => array(
                        'authorize' => 'controller',
                        'autoRedirect' => false,
                        'loginRedirect' => array(
                                'admin' => false,
                                'controller' => 'users',
                                'action' => 'dashboard'
                        ),
                        'loginError' => 'Invalid account specified',
                        'authErro' => 'You don\'t have the right permission'
                ),
                'Cookie',
                'Session'
        );

my problem is the loginError. Evertime i successfully logged in to the
application, loginError still shows.
can you guys help me? thanks..

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to