Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #48853


Ignore:
Timestamp:
12/03/2019 08:20:36 PM (6 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #48853 – Description

    initial v1  
    11After updating WordPress to 5.3, we saw how the thumbnails of the PDF files were not generated.
    22
    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
     3After 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]
    64
    75Calling {{{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.