Quantcast
Channel: Problems Moving to New Server
Viewing all articles
Browse latest Browse all 84

Re: Problems Moving to New Server

$
0
0
Quote
Thomas Seifert
if it would be only the image part I'd have an idea but as you say this is for all files are hit its getting tricky. You might try the change below anyway.

I cannot find that line or statement in /include/api/image.php

I've ran a search for imagick.so and @dl with no results. I am running Phorum 5.2.18

The closest item I can find is...

Language: PHP
// ----------------------------------------------------------------- // Try to use the imagick library tools // -----------------------------------------------------------------   if (($method === NULL || $method == ';imagick';) && extension_loaded(';imagick';) && class_exists(';Imagick';)) { $method = NULL;   $imagick = new Imagick(); $imagick->readImageBlob($image); $imagick->thumbnailImage($img[';new_w';], $img[';new_h';], TRUE); $imagick->setFormat("jpg"); $img[';image';] = $imagick->getimageblob(); $img[';new_mime';] = ';image/jpeg';; $img[';method';] = ';imagick';;   return $img; }

For the record, according to Mod:Embed_Images the "gd" is working. (on my old server it said "imagick" instead of "gd" and both return NOT_OK for the Google download test so this isn't related.

Viewing all articles
Browse latest Browse all 84

Trending Articles