Umbraco 10 + Azure blob storage - not showing files if file name contains hebrew letters
Hi,
We are using Umbraco 10 on Linux Azure Web app with media stored in Azure blob storage.
When we are creating new media in the Backoffice, everything works great but if the filename of the picture itself contains Hebrew letters then the media itself not shown.
After reviewing the log in the application Insights we see that it is trying to URL encode the filename twice and because of that we are receiving 404 from the blob storage.
Umbraco 10 + Azure blob storage - not showing files if file name contains hebrew letters
Hi,
We are using Umbraco 10 on Linux Azure Web app with media stored in Azure blob storage.
When we are creating new media in the Backoffice, everything works great but if the filename of the picture itself contains Hebrew letters then the media itself not shown.
After reviewing the log in the application Insights we see that it is trying to URL encode the filename twice and because of that we are receiving 404 from the blob storage.
Any suggestions ?
same issue here! any update?
I have the same issue here using a French accent. Any solution or workaround from your side?
Here is my current behavior:
testé.png
https://[umbraco_site]/media/vp3hc3ef/test%C3%A9.png
https://[azureblobstorage]/[container]/media/vp3hc3ef/test%C3%A9.png
Umbraco tries to access the blob using that name :
test%25C3%25A9.png
. As you said, it reencodes the filename, so the%
is encoded to%25.
From what I can see, the problem is related to the package:
Umbraco.StorageProviders.AzureBlob
I hope to get an update too about that issue, because preventing accent in file name is not an ideal workaround.
is working on a reply...