Hi,
It happens on some servers (5% of the servers). Most of the time it concerns local servers.
It can be related to two problems:
* Image Magick is installed but not propely configured on your server (by default phpThumb will always try to use image magick)
* The document root cannot be found
To fix that you have to edit two files and try to play with the conf manually.
component/com_flexicontent/librairies/phpthumb/phpthumb.config.php (for dynamic thumbnail and caching - eg: blog view)
component/com_flexicontent/librairies/phpthumb/phpthumb.class.php (for resize and watermark on upload - eg: image field upload in backend)
In the second file you can try that:
Replace line 119-120:
Code:
var $config_prefer_imagemagick = true;
var $config_imagemagick_use_thumbnail = true;
By
Code:
var $config_prefer_imagemagick = false;
var $config_imagemagick_use_thumbnail = false;
If it still doesn't function set the document root manually on line 75 - for example:
Code:
var $config_document_root = '/var/www/vhosts/my.domain.tld/.......';
And replace line 219 by
Code:
$this->config_document_root = $this->config_document_root);
NOTE: the first file will have no effect on upload feature as upload functions with object mode.
Cheers,
Emmanuel.