Changes between Initial Version and Version 1 of Ticket #48853
- Timestamp:
- 12/03/2019 08:20:36 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #48853 – Description
initial v1 1 1 After updating WordPress to 5.3, we saw how the thumbnails of the PDF files were not generated. 2 2 3 After many tests in different environments (we have tested with PHP versions 7.0, 7.1, 7.2 and 7.3, and in different servers), I found the cause, this change: 4 5 https://core.trac.wordpress.org/changeset/46238 3 After many tests in different environments (we have tested with PHP versions 7.0, 7.1, 7.2 and 7.3, and in different servers), I found the cause, this change: [46238] 6 4 7 5 Calling {{{setOption}}} before {{{readImage}}} produces an internal error in Imagick ({{{ImagickException: Failed to read the file}}}) that causes it not to be able to read the file, while moving this line to run after {{{readImage}}} generates thumbnails without problems.