Ben Auth ve ACL bileşenleri ile CakePHP 1.2 kullanıyorum.
Benim kullanıcı kayıt eylem, şifre unhashed geliyor. Özel olarak, bu ifade:
if ($this->data['User']['password'] !=
$this->Auth->password($this->data['User']['confirm_password']))
Bu benim password
için aynı değerleri sunmak ve confirm_password
bile, true değerlendirmek. Ben Auth->password
için çağrı kaldırdığınızda, ifade yanlış olarak değerlendirir çünkü parola unhashed olduğunu biliyoruz.
Ben Auth modülü automagically parola hash bekleniyor. Ben yanlış ne yapıyorum?
İşte benim görünümüdür:
<?php
echo $form->create('User', array('action' => 'register'));
echo $form->input('email',
array('after' => $form->error(
'email_unique', 'This email is already registered.')));
echo $form->input('password');
echo $form->input('confirm_password', array('type' => 'password'));
echo $form->end('Register');
?>
Burada kullanıcı denetleyicisi benim kayıt eylemdir:
function register(){
if ($this->data) {
if ($this->data['User']['password'] !=
$this->Auth->password($this->data['User']['confirm_password'])) {
$this->Session->setFlash(__('Password and Confirm Password must match.', true));
$this->data['User']['password'] = '';
$this->data['User']['confirm_password'] = '';
}
else{
$this->User->create();
if ($this->User->save($this->data)){
$this->redirect(array('action' => 'index'), null, true);
}
else {
$this->data['User']['password'] = '';
$this->data['User']['confirm_password'] = '';
$this->Session->setFlash(__('Some problem saving your information.', true));
}
}
}
}
Ve burada benim appController
I Auth
ve Acl
modülleri kapsamaktadır:
class AppController extends Controller {
var $components = array('Acl', 'Auth');
function beforeFilter(){
if (isset($this->Auth)) {
$this->Auth->allow('display');
$this->Auth->fields =
array(
'username' => 'email',
'password' => 'password');
$this->Auth->authorize = 'actions';
}
}
}
Ben yanlış ne yapıyorum?