Magento Magmi 的 hhvm nginx toString 服务器错误

hhvm nginx toString server error with Magento Magmi

我正在尝试 运行 Magento 应用程序上的 magmi 产品导入插件,该应用程序 运行ning 在具有 NGINX 和 HHVM 的 aws ec2 实例上。当我尝试 运行 Magento 上的 magmi 产品导入应用程序时,我在 hhvm 错误日志 中收到以下服务器错误。

/var/log/hhvm/error.log

\nCatchable fatal error: Object of class Magmi_ProductImportEngine could not be converted to string in /var/www/qa-hoi/magmi-importer/inc/magmi_mixin.php on line 9

这是magmi_mixin.php文件

<?php
class Magmi_Mixin
{
    protected $_callers;

    public function bind($caller)
    {
        $this->_callers[]=$caller;
        $this->_callers=array_unique($this->_callers);  // LINE 9   
    }

    public function unbind($caller)
    {

        $ks=array_keys($this->_callers,$caller);
        if(count($ks)>0)
        {
            foreach($ks as $k)
            {   
                unset($this->_callers[$k]);
            }
        }

    }

    public function __call($data,$arg)
    {
        if(substr($data,0,8)=="_caller_")
        {
            $data=substr($data,8);
        }
        for($i=0;$i<count($this->_callers);$i++)
        {
            if(method_exists($this->_callers[$i],$data))
            {
              return call_user_func_array(array($this->_callers[$i],$data), $arg);
            }
            else
            {
                die("Invalid Method Call: $data - Not found in Caller");
            }
        }
    }
}

知道我应该如何解决这个问题吗?我应该更新我的 php.ini 文件吗?

可能导致致命错误的原因。它没有发生在我有 Apache 的本地机器上。


更新

我在我的本地机器上安装了 HHVM 和 运行 xdebug。似乎 magmi 文件中的 $caller 对象包含几个无法计算的数组。请参阅下面的屏幕截图:

HHVM 比 PHP 更严格,当涉及到已弃用的约束和函数、警告和通知时,因此(写得不太好的)代码在 PHP 在 HHVM 中无法正常工作。

关于您的具体问题:

根据 HHVM 的文档,这就是第 9 行中发生的情况,问题出在 array_unique 的参数中(参考 http://docs.hhvm.com/manual/en/function.array-unique.php):

array_unique($this->_callers)

HHVM 手册指出:

function array_unique ( array $array [, int $sort_flags = SORT_STRING ] ): array

表示你传给array_unique的数组作为第一个参数,因为第二个参数默认为SORT_STRING,预计只包含字符串元素或者其他类型的元素只要它们都可以直接转换为字符串。

只有定义(或继承)"magic" 方法 __toString() 的对象才能转换为字符串。

因此,一个解决方案是修改 Magmi_ProductImportEngine class 的代码,添加如下内容:

class Magmi_ProductImportEngine /* extends whatever */ {
     // ... other stuff

     public function __toString() {
         return 'array representation of the object as string for sorting purposes';
     }

     // ... other stuff
}

但是,我不希望相同的代码在 Apache mod-php 中正常工作(它应该因 "PHP Catchable fatal error: Object of class Magmi_ProductImportEngine could not be converted to string" 而失败),也许在您的 Apache 版本数组“$this->_callers”在元素中不包含 Magmi_ProductImportEngine 的实例?

我遇到了同样的问题。我的解决方案是简单地注释掉有问题的行。

    public function bind($caller)
{
    $this->_callers[]=$caller;
    // $this->_callers=array_unique($this->_callers);  // LINE 9   
}

您可能还会发现 Magmi 在 /magmi/web/magmi_run.php 上收到“500 hphp_invoke”错误。为了解决这个问题,我在第一个 if 语句中添加了一个异常处理程序。我的 magmi_run.php 文件现在显示为...

<?php
$params = $_REQUEST;
ini_set("display_errors", 1);
require_once ("../inc/magmi_defs.php");
require_once ("../inc/magmi_statemanager.php");
try {
    $engdef = explode(":", $params["engine"]);
    $engine_name = $engdef[0];
    $engine_class = $engdef[1];
    require_once ("../engines/$engine_name.php");
} catch (Exception $e) {
    die("ERROR");
}
if (Magmi_StateManager::getState() !== "running") {
    try {
        Magmi_StateManager::setState("idle");
        $pf = Magmi_StateManager::getProgressFile(true);
        if (file_exists($pf)) {
            @unlink($pf);
        }
        set_time_limit(0);
        $mmi_imp = new $engine_class();
        $logfile = isset($params["logfile"]) ? $params["logfile"] : null;
        if (isset($logfile) && $logfile != "") {
            $fname = Magmi_StateManager::getStateDir() . DIRSEP . $logfile;
            if (file_exists($fname)) {
                 @unlink($fname);
            }
            $mmi_imp->setLogger(new FileLogger($fname));
        } else {
            $mmi_imp->setLogger(new EchoLogger());
        }
        $mmi_imp->run($params);
    } catch (Exception $e) {
        die("ERROR");
    }
} else {
    die("RUNNING");
}
?>