File Repository
# help-with-umbraco
r
Has anyone come across a package (or other) for use in uploading a bunch of files to an Umbraco site? Think of it like an FTP dump, but through the Umbraco CMS. I found something(ish) that I was looking for but it's fairly old - https://our.umbraco.com/packages/backoffice-extensions/file-manager/
s
Set up an FTP dump somewhere instead 😉
But seriously, this is not what Umbraco is built for, allowing random file uploads is also a potential security issue and depending on who you allow to upload, it might lead to full disks quickly.
r
The client was throwing around a few requirements about user access and not tech savvy enough for FTP, but that was my first choice (don't reinvent the wheel and all that)
s
Hmmm.. yeah.. dangerous. Anonymous users or authenticated?
I've use blob storage before but that still requires users to install an app to upload to blob storage, which is about as bad as FTP.
r
It's authorised Umbraco users. I've spent some more time thinking about it and seeing what else is out there and I think the best solution, if they really can't use FTP, would be to just use the media section
since making a file upload program within Umbraco would take time and I don't want to just inject some JS file upload service due to security. cheers for taking the time to reply seb 👍
s
Yeah I think that might be best. If it's a lot of files, you might want to integrate a proper DAM though, as it will help with organizing and searching.