Ok, I've managed to rid myself of the long error message by simply switching off the image resizing settings.. However, when I upload I just get - Error(s) detected: - but no more info than that. I'm still not getting any thumbnails, just the Humming bird in their place.
Go to the phpThumb.config.php and completely disable imageMagic (prefer IM - false, image_magic_path - null) I think you are missing GD library as well (or at least proper version). Sorry to say it but it seems your hosting sucks.
e107 Bulgaria | Corllete Lab
// ImageMagick configuration $PHPTHUMB_CONFIG['
prefer_imagemagick'] = false; // If true, use ImageMagick to resize thumbnails if possible, since it is usually faster than GD functions; if false only use ImageMagick if PHP memory limit is too low. $PHPTHUMB_CONFIG['imagemagick_use_thumbnail'] = false; // If true, use ImageMagick's "-thumbnail" resizing parameter (if available) which removes extra non-image metadata (profiles, EXIF info, etc) resulting in much smaller filesize; if false, use "-resize" paramter which retains this info if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') { // Windows: set absolute pathname $PHPTHUMB_CONFIG['imagemagick_path'] = 'D:/develop/tools/ImageMagick/convert.exe'; } else { // *nix: set absolute pathname to "convert", or leave as null if "convert" is in the path (location detected with `which`) //$PHPTHUMB_CONFIG['imagemagick_path'] = '/usr/local/bin/convert'; $PHPTHUMB_CONFIG['imagemagick_path'] = null;
But it's not made any difference. I've also checked the Php info and here is the GD reference:
GD Support enabled GD Version bundled (2.0.34 compatible)
I give up! I've now moved host and at 1st look all is working well with a completely new installation of the entire site. Thanks for your help, sorry to have been a pain in the a**se