Download & Extend

Create multiple cck_image nodes at once

Project:CCK Gallery
Version:6.x-1.x-dev
Component:Documentation
Category:task
Priority:normal
Assigned:Unassigned
Status:closed (fixed)

Issue Summary

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

#1

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

#2

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.

#3

Awesome - thanks for sharing! =)

#4

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

#5

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

#6

Component:User interface» Documentation
Category:feature request» task

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

#7

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 :-)

#8

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

#9

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

#10

Status:active» closed (fixed)

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

nobody click here