MG 2.0 No album thumbnails

mcatze

Well-known member
Hi,

with some images i got no thumbnail in albums. I rebuild all media thumbnails, album thumbnails and so on.
What should i do?
 

Attachments

  • Screenshot 2018-06-25 19.55.08.webp
    Screenshot 2018-06-25 19.55.08.webp
    20.5 KB · Views: 11
If they are particularly large images, then they may exceed the pixel limit for resizing.

If the server is sufficiently powerful then you may be able to increase that limit and rebuild the thumbs again.

First, you need to identify the width and height of the images which do not have a thumbnail.
 
That's pretty huge.

By default XF will refuse to resize anything larger than 20,000,000 pixels. These are 44,000,000 pixels.

You'd edit src/config.php and add the following:
PHP:
$config['maxImageResizePixelCount'] = 50000000;
 
Top Bottom