Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
Hi,
I have being trying to generate thumbnails using this way:
Code: Select all
<img src="<cms:thumbnail featured_img width='80' height='53'/>" class="d-flex" alt="popular post image">

But each time I use the thumbnail tag, everything on my website just disappears and I can't figure out why its behaving this way or what could be wrong?
Hi,

It seems PHP is running out of memory while trying to create the thumbnail.
Please try upping the limit a bit - find line 49 in 'couch/includes/timthumb.php' and change the following value from 64M to 128M or 256M
Code: Select all
ini_set('memory_limit', "64M");

Hope it helps.
Thanks KK for the quick response. It worked.
3 posts Page 1 of 1