Re: Quick Auth component issue

2008-04-10 Thread Antonio Labriola
Hey guys, thanks for the responses. So it looks like i was doing everything correctly except one minor thing. I was using md5 to encrypt my passwords, however the Auth component does not default to md5, so i had to set it. Then i had to modify the Security.salt key to blank in order for autho

Re: Quick Auth component issue

2008-04-10 Thread Antonio Labriola
Hey guys, thanks for the responses. So it looks like i was doing everything correctly except one minor thing. I was using md5 to encrypt my passwords, however the Auth component does not default to md5, so i had to set it. Then i had to modify the Security.salt key to blank in order for autho

Re: Quick Auth component issue

2008-04-09 Thread John R
Hint: input('password'); ?> On Apr 9, 2:16 pm, Baz <[EMAIL PROTECTED]> wrote: > Because there are so many bits and pieces associated with Auth, it's hard to > diagnose your problem without ALL your code. However, let's try the reverse. > Look at these: > > http://book.cakephp.org/view/172/authent

Re: Quick Auth component issue

2008-04-09 Thread Baz
Because there are so many bits and pieces associated with Auth, it's hard to diagnose your problem without ALL your code. However, let's try the reverse. Look at these: http://book.cakephp.org/view/172/authentication http://www.webdevelopment2.com/cakephp-auth-component-tutorial-1/(downloadable co

Re: Quick Auth component issue

2008-04-09 Thread Chris Hartjes
On Wed, Apr 9, 2008 at 2:48 PM, Antonio Labriola <[EMAIL PROTECTED]> wrote: > Has anyone had anything similar to them? I didnt think it was > going to be this difficult to get the simple authorization up and > running. Any help would be appreciated, thanks. Have you tried the various tut

Re: Quick Auth component issue

2008-04-09 Thread aranworld
This is what my form looks like: create('User',array('action' => 'login')); ?> error('User.username'); ?> input('User.username', array('label'=>'Username') ); ?> error('User.passwd'); ?> input('User.passwd', array('label'=>'Password') ); ? > submit('Submit', array('class' => 'submit')); ?> I