CvP
Member
@Chris D
I'm having the same issue during an import (~200 files out of 1.5M).
All XFMG options are default; nothing changed. v 1.1.10
The source file is just a standard image attachment. For whatever reason, XFMG is pushing it as mp4.
Example:
Another issue is, when clicking "Rebuild Caches", this is causing a fatal error as you are trying to generate thumb using imagecreatefromjpeg based on .jpg (mime from getimagesize() ) instead of using exif_imagetype of the file first.
So we have
- a BMP file,
- with .JPG extension (vbulletin style, you know...),
- stored as MP4 (why?)
- and XF is trying to generate thumb on it without checking exif_imagetype first
- which is causing fatal error
- and if .BMP is passed, XFMG is trying to use some bmp related functions that are only available in PHP 7.2.0+ :/
I'm having the same issue during an import (~200 files out of 1.5M).
All XFMG options are default; nothing changed. v 1.1.10
The source file is just a standard image attachment. For whatever reason, XFMG is pushing it as mp4.
Example:
Another issue is, when clicking "Rebuild Caches", this is causing a fatal error as you are trying to generate thumb using imagecreatefromjpeg based on .jpg (mime from getimagesize() ) instead of using exif_imagetype of the file first.
So we have
- a BMP file,
- with .JPG extension (vbulletin style, you know...),
- stored as MP4 (why?)
- and XF is trying to generate thumb on it without checking exif_imagetype first
- which is causing fatal error
- and if .BMP is passed, XFMG is trying to use some bmp related functions that are only available in PHP 7.2.0+ :/
Last edited: