The solution you provided in the Gotchas section doesn't work for the latest Cake 2.5. Users need to edit UploadsController.php and add the following instead:
public function beforeFilter() {
parent::beforeFilter();
//need to disable Security component
$this->Security->unlockedActions = array('upload');
}
Hi,
The solution you provided in the Gotchas section doesn't work for the latest Cake 2.5. Users need to edit UploadsController.php and add the following instead: public function beforeFilter() { parent::beforeFilter();
Cheers.