Reputation: 2174
How do I use security component in CakePHP? Can any one give me good tutorial?
Upvotes: 1
Views: 1006
Reputation:
Follow the CakePHP Cookbook, but include the following in your app controller's beforeFilter()
function:
$this->Security->blackHoleCallback = '_blackHole';
Upvotes: 2