Reply to thread

And the error is a warning (E_WARNING), rather than a fatal error? You might want to try using Imagick instead. Otherwise you can try marking the problem file as optimized manually, and then running the tool again.


[CODE="sql"]SELECT data_id

FROM xf_attachment_data

WHERE optimized = 0

AND width > 0

ORDER BY data_id

LIMIT 1;[/CODE]


[CODE="sql"]UPDATE xf_attachment_data

SET optimized = 1

WHERE data_id = 123; -- replace 123 with the data_id from the query above[/CODE]


Back
Top Bottom