日本中文字幕一区-日本中文字幕一区二区有码在线-日本中文字幕永久在线-日本中文字幕在线播放-成人自拍视频在线观看-成人自拍偷拍

ecshop頁面報Non-static method cls_image__gd_version() 錯誤的解決方法!

2019-06-21 13:54:15長沙做網站嚴微
Strict Standards: Non-static method cls_image::gd_version() should not be called statically in D:\shop\xampp-portable\htdocs\ecshop\includes\lib_base.php on line 347

Strict Standards: Non-static method cls_image::gd_version() should not be called statically in D:\shop\xampp-portable\htdocs\ecshop\includes\lib_base.php on line 347

具體方法是:

將347行的代碼:
return cls_image::gd_version();
改為:
$p = new cls_image();
return $p->gd_version();

Strict Standards: Non-static method cls_image::gd_version() should not be called statically in ...install\includes\lib_installer.php on line 31

在安裝ECShop 2.7.3時出現了以上錯誤,是因為在程序中靜態調用了非靜態方法,這是ECShop程序員的疏忽造成的。

ECShop根目錄下面的install/includes/lib_installer.php

然后搜索以下代碼
function get_gd_version()
{
    include_once(ROOT_PATH . 'includes/cls_image.php');

    return cls_image::gd_version();
}
復制代碼
將以上代碼修改為以下代碼
function get_gd_version()
{
    include_once(ROOT_PATH . 'includes/cls_image.php');
        $cls_image=new cls_image();
    return $cls_image->gd_version();
}

上一篇:

ecshop的jQuery沖突問題之最簡單的解

下一篇:

沒有了 返 回

Copyright © 2009-2019 Ywcms.Com All Right Reserved.  湖南嚴微網絡科技有限公司©版權所有   湘ICP備16006489號-2