The Image Field only allows one file at a time to be uploaded. Is there a module that enables multi-upload in Drupal 7?
相关问题
- How to balance webserver bandwith usage?
- Change redirect in Drupal 7 for Password Recovery
- EntityMetadataWrapperException: unknown data prope
- Linkedin Share is not fetching the thumbnail image
- jQuery replace all HTML
相关文章
- Render a Drupal node
- How to allow multiple blocks in a module of Drupal
- How can I redirect a Drupal user after they create
- Drupal 7 retain file upload
- how to construct an https POST request with drupal
- Safari 5.1 breaks CSS table cell spacing
- Delete field_group programmatically
- How do I completely disable cache?
You can use this modules : http://drupal.org/project/multiupload_filefield_widget
Or also http://drupal.org/project/custom_add_another.
Comparation of upload modules: http://groups.drupal.org/node/155764
I use this modules: Multiupload Filefield Widget
and for images Multiupload Imagefield Widget
You may try File Resumable Upload https://www.drupal.org/project/file_resup
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.