Dilip Godhani
Dilip Godhani

Reputation: 2174

How do I use security component in CakePHP?

How do I use security component in CakePHP? Can any one give me good tutorial?

Upvotes: 1

Views: 1006

Answers (1)

user559540
user559540

Reputation:

Follow the CakePHP Cookbook, but include the following in your app controller's beforeFilter() function:

$this->Security->blackHoleCallback = '_blackHole';

Upvotes: 2

Related Questions