If you are using CakePHP 1.2, you need to change:
$this->Auth->allow('home','register','activate','forgot','reset','_sendEmail','reset');
to
$this->Auth->allow(array('home','register','activate','forgot','reset','_sendEmail','reset'));
Notice the added "array()" in the allow function.