yii2-attachments icon indicating copy to clipboard operation
yii2-attachments copied to clipboard

Upload fails with Message "No valid data available for upload"

Open philippfrenzel opened this issue 8 years ago • 7 comments

Hi,

pls. see message above:

Upload fails with Message "No valid data available for upload"

I don't understand it, as I have followed your readme.md step by step and it shows no error message in the back?

Thanks for your support Philipp

philippfrenzel avatar Jan 05 '17 14:01 philippfrenzel

Hi,

I cannot help you according to your pure explanation. Could you give me more information about scenario, any screenshots and logs, file information?

CTOlet avatar Jan 07 '17 08:01 CTOlet

Hi,

thanks for your answer, here is what reproduces the issue:

  1. Multiple Upload = false
  2. Upload single file - thumb is getting created
  3. in temporary upload folder, the uploaded file is written
  4. by clicking upload - a new temporary - empty folder is getting created the "first" stays in folder system
  5. frontend -> fails with message as described above
  6. the temporary folders keep within the server file system
  7. no record written to attachfile table

Browser Logs don't show any error message...

I have a docker stack with centos 7 - everything else runs fine within the machine... I can upload images for a gallery fine...

Thanks Philipp

philippfrenzel avatar Jan 07 '17 11:01 philippfrenzel

Я тоже частично столкнулся с такой порблемой, сценарий таков:

  1. Выбираем файл для загрузки, он появляется в форме
  2. Нажимаю кнопку в футере картинки "Загрузить файл", загрузка проходит нормально
  3. Нажимаю кнопку отправки формы, вылетает сообщение "No valid data available for upload.", форма не прошла валидацию, поле подсвечивается красным
  4. Жму сабмит повторно, форма так же не проходит валидацию, но страница обновляется, фото прикрепляется... В чем может быть проблема?

ghost avatar Feb 20 '17 14:02 ghost

image image while I don't change the image,then can't submit the form.how to resolve? thank you!

itcake avatar Jun 16 '17 11:06 itcake

I'm having the same issue. This apparently has to do with some recent changes because I was able to upload files back in July. There are no messages if any kind relating to the upload in runtime/app.log. I have tried saving the file in various formats; it does not help resolve the issue. My common/config/main.php looks like this:

'attachments' => [
                'class'     => nemmo\attachments\Module::className(),
                'tempPath'  => '@app/uploads/temp',
                'storePath' => '@app/uploads/store',
                'rules'     => [ // Rules according to the FileValidator
                                 'maxFiles'  => 10, // Allow to upload maximum 3 files, default to 3
                                 'mimeTypes' => [
                                     'application/excel',
                                     'application/msword',
                                     'application/pdf',
                                     'application/x-pdf',
                                     'application/x-visio',
                                     'audio/mpeg',
                                     'image/gif',
                                     'image/jpeg',
                                     'image/png',
                                     'image/svg+xml',
                                     'text/plain',
                                 ],
                                 'maxSize'   => 1024 * 1024 * 1024
                ],
                'tableName' => 'attachments' // Optional, default to 'attach_file'
            ],

nemmo attachments

larry-tx avatar Dec 14 '17 15:12 larry-tx

I also tried uploading a PNG with the same results.

larry-tx avatar Dec 14 '17 16:12 larry-tx

The good news is that the extension dlds/yii2-attachments works just fine without any errors. Unfortunately, it's not quite as full-featured as the nemmo extension, but unlike the nemmo extension, it does work.

larry-tx avatar Dec 16 '17 20:12 larry-tx