Resize doesn't work on hosting account

See all posts See thread Reply

Re: Resize doesn't work on hosting account new!
by Steve, 12 years, 5 months ago
Another update, after some debugging I found that the file isn't being recognised as an image so when the function checks to see if any processing is needed, the is_image variable is set to false preventing the processing.

Any idea why it's not recognising my image file as an image on my hosting account?Reply
Re: Resize doesn't work on hosting account new!
by colin, 12 years, 5 months ago
For some reason, your host doesn't list jpg as a recognized format for GD. You should have this in the log:
- supported image types : png jpg gif bmp

Can you output here the result of the two following lines?
var_dump(imagetypes() & IMG_JPG);
var_dump(gd_info());
Reply