1 answer
0 votes
Using Auth with legacy database
Hi,
I'm fighting with simple Auth autentication using legacy DB with non-CakePHP schema.
In table tb_mc: I have 2 columns for authentication:
id (number) as name
admin_pass (MySQL PASSWORD hash) as password
In my contoller I create custom...
2 answers
0 votes
Password not getting hashed on signup
Hi, I have my signup working OK, however the users password is not getting hashed. Here is the action in my users controller...
function signup() {
if (!empty($this-data))...
1 answer
0 votes
Validating the password vs the retyped password
Howdy doody,
I've just been reading this little tidbit on the cake bakery:
http://bakery.cakephp.org/articles/view/using-equalto-validation-to-compare-two-form-fields
and I was wondering. Nice idea about changing the input password to "pwd" (or...
0 answers
0 votes
Password madness!!!
yo yo yo yo
Ok, so i would like to do this:
in my edit.ctp, for my users, have a section that edits their first name, username etc. That is done.
Then, for passwords and emails (both of which have a "confirm email" section), i'd like a *different*...
1 answer
0 votes
How to solve automatic password salt?
Hi,
In login form fill into password input word "password":
hash of this is:
'5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8'
but in databese is word "password" hashed as:
'5f4dcc3b5aa765d61d8327deb882cf99'
Im tried set Security.salt hash in core.php to...
3 answers
-4 votes
How To Reset Windows 2000 Administrator Password
I have forgotten my windows logon pasword(windows password 2000). I am afraid to cut my computer off for fear I won't be able to get back into it. Please help me retrieve my password or by pass it, either one. I need a baby steps tutorial since I...
1 answer
0 votes
changed the admin user password at the mysql level.. having trouble logging in to my admin now
Hi any help is appreciated
I changed the admin -- login and password at the mysql database level and now I can not log in to the admin backend panel to change content in the website.
What do I need to do to fix this. I do not remember the old...
2 answers
0 votes
password compare and acl
I use this for the user access control and at add form of users I have a compare password field.
But When a validation failed the password field seems to have the hashed value of the password.
How can I repair that?
1 answer
0 votes
Issue with 'form' tag in ctp file
I have a view file like this:
<div id='sign_up'>
<div class="formDiv">
<?php
echo $form->create('Page', array('url'=> $html->url('/pages/sign_up/'),'id'=>'signUpForm'));
?>
<div class="div_content" style="margin:100px;"> <div ... 2 answers
0 votes
How to validate a password?
Hello,
I have big problems validating a password correctly. The problem is that although the passwordfield is empty, the password will be hashed. So I dont know really how to check, if the user has entered a value or not.
I thought about comparing...
2 answers
0 votes
Porting Passwords to a new Server
I built a new LAMP server and ported all of my websites and MySql tables over to it. The user passwords for my Cake websites are no longer valid. I am using the same code and database info, and I have the same Salt settings as the old server. Is...