bug:2647
External ImageMagick does not work anymore on 1and1 servers git-svn-id: http://piwigo.org/svn/trunk@15575 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
1dfe8d5645
commit
acb3e717fc
2 changed files with 24 additions and 0 deletions
|
|
@ -509,6 +509,11 @@ class image_ext_imagick implements imageInterface
|
|||
$this->source_filepath = $source_filepath;
|
||||
$this->imagickdir = $conf['ext_imagick_dir'];
|
||||
|
||||
if (get_host() == 'kundenserver.de') // 1and1
|
||||
{
|
||||
@putenv('MAGICK_THREAD_LIMIT=1');
|
||||
}
|
||||
|
||||
$command = $this->imagickdir.'identify -format "%wx%h" "'.realpath($source_filepath).'"';
|
||||
@exec($command, $returnarray);
|
||||
if(!is_array($returnarray) or empty($returnarray[0]) or !preg_match('/^(\d+)x(\d+)$/', $returnarray[0], $match))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue