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
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
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
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
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
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