eXoSaX
eXoSaX

Reputation: 149

Upload multiple files in Drupal 7

The Image Field only allows one file at a time to be uploaded. Is there a module that enables multi-upload in Drupal 7?

Upvotes: 9

Views: 24942

Answers (4)

anrikun
anrikun

Reputation: 21

You may try File Resumable Upload https://www.drupal.org/project/file_resup

File Resumable Upload aka file_resup adds large files multiple and resumable upload to the File and Image field widgets.

Upvotes: 1

Denis Shishkov
Denis Shishkov

Reputation: 329

Comparation of upload modules: http://groups.drupal.org/node/155764

I use this modules: Multiupload Filefield Widget

and for images Multiupload Imagefield Widget

Upvotes: 13

HaleFx
HaleFx

Reputation: 857

If you just want to upload multiple files per node, you can edit the image field settings to allow that. Go to Home » Administration » Structure » Content types » [Content type] » Manage fields then edit the Image field.

If you want to upload multiple files at once, it looks like Plupload is your only real option. Or you could use FileField Sources to attach images that have been uploaded via FTP.

Upvotes: 1

Related Questions