I installed the personal site on Umbraco 4.6.1 and tried to use the "Bulk upload" option in the gallery.
After selecting a .zip file with a few jpg images and pressing the publish button, the zipfile itself is uploaded and visible as link on the page, but the expected child nodes with the images from the zip aren't there.
I don't know wich component has been used (or is it core) and how to solve the problem.
I'm seeing this same issue. However, I checked my error log, and nothing is showing up. I checked the Umbraco.RunwayGallery.cs file, and the fix suggested above to change the aliases have already been done. So, why is this still not working for me? Can anybody confirm that this bulk upload feature is working with a SQL Server Compact 4.0 deployment?
Bulk upload problem in "Personal site"
Hi,
I installed the personal site on Umbraco 4.6.1 and tried to use the "Bulk upload" option in the gallery.
After selecting a .zip file with a few jpg images and pressing the publish button, the zipfile itself is uploaded and visible as link on the page, but the expected child nodes with the images from the zip aren't there.
I don't know wich component has been used (or is it core) and how to solve the problem.
Anybody an idea?
Yes, I allready found it (by reading http://our.umbraco.org/forum/ourumb-dev-forum/bugs/5763-Is-there-an-issue-with-the-bulk-upload-of-pictures-function-in-v4)
The issue is that the document alias of Gallery Album and Gallery Photo is not equal to the aliasses in Umbraco.RunwayGallery.cs
For me the easy way is changing umbGalleryAlbum to runwayGalleryAlbum and umbGalleryPhoto to RunwayGalleryPhoto.
I think this is a "bug" in the personal site starterkit? Isn't it?
Renaming the documenttype was not the correct option... (it will break other things).
So I decided to change the Umbraco.RunwayGallery.cs
Also another problem occured: It skipped some image files because the extension is .JPG instead of .jpg.
I know that there is a config setting somewhere, but changing:
if (umbraco.UmbracoSettings.ImageFileTypes.Contains(imageFile.Extension.Replace(".", "")))
to:
if (umbraco.UmbracoSettings.ImageFileTypes.Contains(imageFile.Extension.Replace(".", "").ToLower()))
Solved my problems..
I'm seeing this same issue. However, I checked my error log, and nothing is showing up. I checked the Umbraco.RunwayGallery.cs file, and the fix suggested above to change the aliases have already been done. So, why is this still not working for me? Can anybody confirm that this bulk upload feature is working with a SQL Server Compact 4.0 deployment?
is working on a reply...