Skip to main content
Spuds image cache Started by badmonkey · · Read 2476 times 0 Members and 1 Guest are viewing this topic. previous topic - next topic

Spuds image cache

https://github.com/Spuds/Elk_Image_Cache_v10


This addon is wonderful!  Thanks for your work @Spuds‍ !


I do have a couple of questions.  One is it breaks photos from PB.  Apparently so does PB, so there's that.  Is here any way to fix that?  Second, it seems to hate animated gifs.  Same question applies.   ;D

Re: Spuds image cache

Reply #1

I think the gif issue is this line https://github.com/Spuds/Elk_Image_Cache_v10/blob/master/subs/ImageCache.class.php#L243

Code: [Select]
if( pathinfo($this->data, PATHINFO_EXTENSION) === 'gif' )
{
    $extension = 1;
}
elseif ( pathinfo($this->data, PATHINFO_EXTENSION) === 'png' ) {
    $extension = 3;
}
else {
    $extension = 2;
}

Will probably sort it, I think...

 

Re: Spuds image cache

Reply #2

I'd give that a try as well  :)