Is it possible to provide a way to make mulitple cck_image nodes from single form page? I think this module is the best of the bunch, but it lacks this key feature for me. Thanks for your hard work.

Comments

greg.harvey’s picture

Would be cool. I'll add it to the list. =)

fexpop’s picture

image_fupload (http://www.drupal.org/project/image_fupload) does work with CCK Gallery.

To use it go to your_host/admin/content/node-type/cck-image/fields/field_image and change the field_image's widget to Image FUpload . Then go to the 'Field settings' and specify the fields you want to edit for each uploaded image, e.g. I select 'Title (Node)' and 'Description (ImageField)'.

Make sure that you don't use Multiselect as the widget for field_gallery as it doesn't play together with Image FUpload.

greg.harvey’s picture

Awesome - thanks for sharing! =)

mojzis’s picture

I just built a big gallery with Imagefield import (drupal.org/project/imagefield_import). Works great :-)

asw20pilot’s picture

I know it has been a while since your post, but I have a question for you. I am trying to use Imagefield import like you, and it mostly works, except that the "gallery" field of each CCK Image node is not set. So the image node are created fine, but they don't reference a CCK gallery node, so I have to set that reference for each CCK image manually.

Did you not have this problem? How did you get around it?

Best regards,
Mikkel

greg.harvey’s picture

Component: User interface » Documentation
Category: feature » task

This needs to be documented in the README, along with #499600: Added some additional CSS and previous/next block

mojzis’s picture

sorry for a late answer ... i did it the "ugly way" ... just :

SELECT * FROM `node` WHERE type like 'cck%' order by nid desc

and :

update content_type_ckim set field_gallery_nid = 177
WHERE field_gallery_nid is null

(place your gallery's nid instead of 177 ofcourse ... )

but it went fast :-)

greg.harvey’s picture

So you didn't use imagefield import? Or you did and *then* you had to run those queries?

mojzis’s picture

yes, the queries are after the import, updating the freshly imported nodes

greg.harvey’s picture

Status: Active » Closed (fixed)

Closing this issue, moving development to Node Gallery 6.x-3.x - this will support multiple image upload.