Hi,

I've installed the module and enabled it on a content type with image fields.
The upload widget is set to "photos" (the name of the CCK imagefield).
Output is lightbox2, "Hide upload widget?" is not enabled.

I was using Firefox 3.5 and upgraded to 3.6.9 (after reading posts on different browsers).

In the Node edit, I don't see any area where files can be dragged.
What am I missing?

CommentFileSizeAuthor
#5 upload widget.png7.55 KBboran

Comments

johnv’s picture

There is no new element on your form. Just drop the file from your explorer on the 'file upload' widget, on on the rigth of it.

deciphered’s picture

Status: Active » Fixed

Boran,

There is no visual indicator in the current version, you can simply just drop the file on the Node body and it will work.

I do have a version in development which will show you the actual dropzone(s).

boran’s picture

I re-enabled the module, set the upload widget to "photos" (the relevant fieldfield).
Then going to node edit, tried to drag an image from the desktop to
a) The node body text
b) the file upload widget (browse/transfer buttons, title field, grey space around it all.
Nothing seems to happen.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

boran’s picture

Status: Closed (fixed) » Active
StatusFileSize
new7.55 KB

Sorry to insist on this :-)
I upgraded to the dev version, but it does not work for me either.....
I'm attaching a screen-shot of the file upload widget, on can see where I'm trying to drag.
What am I doing wrong?

gilles.brochet@insa-lyon.fr’s picture

I had the same problem with drupal and french translation interface. When the interface is in english, it works.
So, i modify 3 files (upload.inc, filefield.inc, imagefield.inc) in dragndrop_uploads/modules directory.

The problem is that the submit button value of the create content page change when you change interface language. (the default english submit button value is 'Attach' and the french is 'Attacher')

In upload.inc, change :
'submit' => 'Attach', to 'submit' => t('Attach'),

In filefield.inc, change :
'submit' => 'Upload', to 'submit' => t('Upload'),

In imagefield.inc, change :
'submit' => 'Upload', to 'submit' => t('Upload'),

For me, it works now

johnv’s picture

Status: Active » Needs review

Change status after new patch #6.

deciphered’s picture

Hi guys,

Looking at #5 and #6, whether or not that wasn't the cause of the problem (which it undoubtedly is) it should be fixed either way, it's just bad coding standards on my behalf of which there is no excuse.

Will get this fix committed ASAP!

Cheers,
Deciphered.

P.S. It does make things a hell of a lot easier for developers/maintainers if you do actually create patches (http://drupal.org/patch/create).

deciphered’s picture

Status: Needs review » Fixed

Fix committed to DRUPAL-6--1.

Cheers,
Deciphered.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.