Still the same.
After submiting the login form with test_username/test_password, here
is print_r($this->data):
Array ( [Player] => Array ( [name] => test_username [password] => ) )

I noticed that even if I remove the password field form the form,
print_r($this->data) is exactly the same (with 'password' field).

On Aug 17, 2:08 pm, Brendan Farquharson <brenf...@gmail.com> wrote:
> Try enabling 'Session' component as well in your app_controller.php
>
> On 17 August 2010 12:01, Zippoxer <zippo...@gmail.com> wrote:
>
>
>
> > No that's not the problem. The Auth component is enabled.
> > Please what's the problem? I'm waiting two days and can't keep working
> > with CakePHP...
>
> > On Aug 16, 9:37 pm, Zippoxer <zippo...@gmail.com> wrote:
> > > Ohh, I think that's the problem. It looks enabled, but when I don't
> > > allow access to "login" action it still allows.
> > > Here's the full app_controller.php code:
>
> > > class AppController extends Controller {
>
> > >     var $components = array('Auth');
>
> > >     function beforeFilter() {
> > >         parent::beforeFilter();
> > >         $this->helpers[] = 'Menu';
> > >         $this->Auth->userModel = 'Player';
> > >         $this->Auth->allow('login', 'register');
> > >         $this->Auth->fields = array(
> > >             'username' => 'name',
> > >             'password' => 'password'
> > >         );
> > >     }
>
> > > }
>
> > > On Aug 16, 9:13 pm, Miles J <mileswjohn...@gmail.com> wrote:
>
> > > > Do you have the Auth component enabled?
>
> > > > On Aug 16, 2:04 am, Zippoxer <zippo...@gmail.com> wrote:
>
> > > > > This is the form code in the view:
> > > > > <?php
> > > > >     echo $form->create('Player');
> > > > >     echo $form->input('name', array('label' => 'Name'));
> > > > >     echo $form->input('password', array('label' => 'Password'));
> > > > >     echo $form->end('Login');
> > > > > ?>
>
> > > > > And in the controller I just do:
> > > > > print_r($this->data);
>
> > > > > Then I see an array with the username and password, but the password
> > > > > is always empty.
>
> > > > > On Aug 16, 6:16 am, Sam <s...@masterscommission360.com> wrote:
>
> > > > > > We need more info... can you paste your view, and perhaps your
> > > > > > controller action?
>
> > > > > > On Aug 15, 1:24 pm, Zippoxer <zippo...@gmail.com> wrote:
>
> > > > > > > I've created a simple authentication form with username and
> > password
> > > > > > > input fields.
> > > > > > > The problem is that the password is always empty through
> > $this->data
> > > > > > > in the controller, but username is not empty.
> > > > > > > What's the problem?
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
> > with their CakePHP related questions.
>
> > 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<cake-php%2bunsubscr...@googlegroups.c 
> > om>For more options, visit this group at
> >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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