You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an image file is uploaded with a capitalized extension (ie. image.JPG image.PNG), the image will not render (regardless of the casing of the setting in the "Allowed FileTypes" box).
The text was updated successfully, but these errors were encountered:
wykananda
changed the title
"Allowed File Types" extension casing issue
"Allowed File Types" extension casing
Jun 17, 2014
wykananda
changed the title
"Allowed File Types" extension casing
"Allowed File Types" Image filenames with uppercase extension won't render
Jun 17, 2014
There are more problems with uppercase filetypes. IE does not show images with uppercase jpg extensions. (.JPG / .JPEG). Quick fix is updating the database et_attachment filename table:
UPDATE`et_attachment`SET`filename`= REPLACE(`filename`, "JPG", "jpg") WHERE RIGHT(`filename`, 3) ="JPG";
Ideally we should change the filename to lowercase before/when uploading
If an image file is uploaded with a capitalized extension (ie. image.JPG image.PNG), the image will not render (regardless of the casing of the setting in the "Allowed FileTypes" box).
The text was updated successfully, but these errors were encountered: