Migration 站点迁移后,timthumb不工作

Migration 站点迁移后,timthumb不工作,migration,thumbnails,timthumb,Migration,Thumbnails,Timthumb,我只是从xfactorapp.com上移动我的站点,任何新上传的图片都没有缩略图。图像位于服务器上,但未生成缩略图 如何更改该代码以使缩略图在新服务器上可见 function href_t`imthumb($file, $set = null, $xf = true) { if (!$set || !$xf) { $timthumb = webpath_assets('/timthumb.php'); $href = $timthumb . '?src=' . $file;

我只是从xfactorapp.com上移动我的站点,任何新上传的图片都没有缩略图。图像位于服务器上,但未生成缩略图

如何更改该代码以使缩略图在新服务器上可见

function href_t`imthumb($file, $set = null, $xf = true) {
if (!$set || !$xf) {
    $timthumb = webpath_assets('/timthumb.php');
    $href = $timthumb . '?src=' . $file;
    if (xcount($set) > 0) {
        foreach ($set as $k => $v) {
            $href .= '&' . $k . '=' . $v;
        }
    }
    return $href;
} else {
    $param['w'] = 150;
    $param['h'] = 150;
    $param['zc'] = 0;
    $param['q'] = 90;
    if (DEV) {
        $app = DEV_PREFIX . APP_VERSION;
    } else {
        $app = LIVE_PREFIX . APP_VERSION;
    }
    if (xcount($set) > 0) {
        foreach ($set as $k => $v) {
            $param[$k] = $v;
        }
        $file = '/' . $app . $file;
        $protocol = 'http';
        if (isSSL()) {
            $protocol = 'https';
        }
return $protocol . '://thumb.xfactorapp.com/tt/' . implode('/', $param) . $file;
    }
}
}
给我:

<img class="img-responsive" alt="building" src="http://thumb.xfactorapp.com/tt/263/147/2/90/v3/uploads/_lifttec/cms/58529051881f8f0d87ab1401/5947fffeac28b_200-ATJ-Platforma-autoridicatoare-articulata.jpg">

我希望将代码更改为使用parnam属性获取缩略图,但不是从thumb.xfactorapp.com上传


谢谢

只需将$xf从true更改为false$xf=false。

如果您更改了服务器,可能是缺少GD库,因此安装并重新启动Apache,然后检查您的文件权限

//安装GD库的步骤

sudo apt get安装php5.6-gd

//重新启动Apache2

sudo/etc/init.d/apache2重启