is there any way to make file uploading not required in cakephp i've tried setting allowEmpty to true , and required to flase but didn't work
'pic' => array(
'uploadError'=>array(
'rule'=>'uploadError',
'message'=>'The image upload failed',
'allowEmpty'=>true
)
)