Hi,
When the file upload field is required.
 No control is done and the validation is made without any warning.
 In the file plugins / cck_field_validation / required / required.php
 public static function onCCK_Field_ValidationPrepareStore (& $ field, $ name, $ value, and $ config)
 if ($ value! = '' || $ field-> state == 'disabled' || strpos ($ field-> required, '[')! == false)
 The condition $ field-> state == 'disabled' and prevents the error test.
 For information in the Before Render 'state' = 1 instead of disabled.
 How to solve this problem?
Thanks.