Ok, I’ve done some digging today for a solution…
It’s not perfect but if you’re using a capable browser you can amend this file and it seems to work:
/admin/addgallery.php
Line 371 – Change:
<td><span id='spanButtonPlaceholder'></span><input type="file" name="imagefiles[]" id="imagefiles" size="35" class="imagefiles"/></td>
To (add ‘multiple’ to the element’)
<td><span id='spanButtonPlaceholder'></span><input type="file" name="imagefiles[]" id="imagefiles" size="35" class="imagefiles" multiple /></td>
More info here: http://dev.w3.org/html5/markup/input.file.html
Now the user can select multiple files for upload. They will only see one file to upload on the main screen in the admin section but it will upload multiple files at once.
As I said, not perfect but it helped a client out today.
Cheers,
James
That’s strange. I can’t recreate the problem here.
For now I’ll advise then to turn off the flash upload as the rest of it seems to work still.
I have a client with the same problem.
It seems to be something to do with flash as when it’s disabled there’s no problem.
Did you find an answer in the end?