I used the cookbook to create my own custom Authentication using the following code:
// Controller/Auth/CustomAuthenticate.php
App::uses('BaseAuthenticate', 'Controller/Component/Auth');
class CustomAuthenticate extends BaseAuthenticate {
public function authenticate(CakeRequest $request, CakeResponse $response) {
return false;
}
}
// Controller/UserController.php
class UserController extends AppController {
var $components = array('Auth' => array('authenticate' => array('Custom')));
public function login() {
// some code that includes:
$this->Auth->login($this->request->data);
}
}
Somehow with correct credentials, the login seems to work, although the authenticate method in my CustomAuthentication class returns false.
I'm using CakePHP 2.1
authenticate()method does...is return false. – cillosis Apr 12 '12 at 12:05