I have a form with a file upload element on it (set to allow multiple file selection - echo $this->Form->file('filename.', array('multiple' => 'multiple'));
), and when the size of files selected by the user exceeds the PHP value of post_max_size I get no error, but $this->request->data is an empty array.
Is this the expected behaviour, it doesn't seem right to me?