Certain pages of my website crash when I try to call the 'Security' component in any of the apps. For example in the AppController file, if I change the components definition from
var $components = array('Auth','Session','Email');
to
var $components = array('Auth','Session','Email','Security');
pages on my site that rely on POST data from other pages crash. All I get is a blank screen. In the \cake\libs\controller\components directory there 'security.php' is defined and stored.
Any ideas on what's causing this or how to approach this?