次のコードで新しいユーザーを作成します: controller:
$this->User->createUser($this->data)
モデル:
function createUser(){
$this->create();
}
その後、ユーザーにログインしたいと思います。私はすでにこれを試しました(コントローラーで):
$this->Auth->login($this->data);
$this->redirect('home');
残念ながら、そのようには機能しません。私は何か間違ったことをしていますか?