5

我陷入了这个错误:

Warning: simplexml_load_string(): Entity: line 46: parser error : Comment not terminated  in */lib/Varien/Simplexml/Config.php on line 510

Entity: line 46: parser error : Start tag expected, '<' not found  in */lib/Varien/Simplexml/Config.php on line 510

很明显,某些 Xml 文件中存在问题,但我真的不容易在大海捞针:)

有什么好的做法吗?如果可能的话,我想找到一个涉及使用 Xdebug 或一些日志的好习惯。

在 Magento 中经常会发生一些拼写错误。

4

6 回答 6

16

我想你可以看看这篇文章处理 XML 错误

此警告与某些 config.xml 错误有关,因此找出确切文件的可能解决方法是修改。/lib/Varien/Simplexml/Config.php 类。

您应该修改Varien_Simplexml_Config::loadString()方法:

public function loadString($string)
{
    if (is_string($string)) {
        // Enable internal errors
        libxml_use_internal_errors(true);
        $xml = simplexml_load_string($string, $this->_elementClass);
        if (false === $xml) {
            // Put breakpoint here
            $errors = libxml_get_errors();
        }
        if ($xml instanceof Varien_Simplexml_Element) {
            $this->_xml = $xml;
            return true;
        }
    } else {
        Mage::logException(new Exception('"$string" parameter for simplexml_load_string is not a string'));
    }
    return false;
}

如果错误与某些布局文件有关(Update.php 第 444 行警告)

您应该Mage_Core_Model_Layout_Update::getFileLayoutUpdatesXml()以类似的方式修改方法:

public function getFileLayoutUpdatesXml($area, $package, $theme, $storeId = null)
{
    if (null === $storeId) {
        $storeId = Mage::app()->getStore()->getId();
    }
    /* @var $design Mage_Core_Model_Design_Package */
    $design = Mage::getSingleton('core/design_package');
    $layoutXml = null;
    $elementClass = $this->getElementClass();
    $updatesRoot = Mage::app()->getConfig()->getNode($area.'/layout/updates');
    Mage::dispatchEvent('core_layout_update_updates_get_after', array('updates' => $updatesRoot));
    $updateFiles = array();
    foreach ($updatesRoot->children() as $updateNode) {
        if ($updateNode->file) {
            $module = $updateNode->getAttribute('module');
            if ($module && Mage::getStoreConfigFlag('advanced/modules_disable_output/' . $module, $storeId)) {
                continue;
            }
            $updateFiles[] = (string)$updateNode->file;
        }
    }
    // custom local layout updates file - load always last
    $updateFiles[] = 'local.xml';
    $layoutStr = '';
    foreach ($updateFiles as $file) {
        $filename = $design->getLayoutFilename($file, array(
            '_area'    => $area,
            '_package' => $package,
            '_theme'   => $theme
        ));
        if (!is_readable($filename)) {
            continue;
        }
        $fileStr = file_get_contents($filename);
        $fileStr = str_replace($this->_subst['from'], $this->_subst['to'], $fileStr);   


        libxml_use_internal_errors(true);
        $fileXml = simplexml_load_string($fileStr, $elementClass);


        if (false === $fileXml) {
            // Put breakpoint here
            $errors = libxml_get_errors();
            $err = array($filename, $errors);
            // error detail and file name will be printed
            Zend_Debug::dump($err);
            die();
        }



        if (!$fileXml instanceof SimpleXMLElement) {
            continue;
        }
        $layoutStr .= $fileXml->innerXml();
    }
    $layoutXml = simplexml_load_string('<layouts>'.$layoutStr.'</layouts>', $elementClass);
    return $layoutXml;
}

现在只需重新加载页面并阅读错误信息。

于 2012-10-31T07:14:20.000 回答
4

好吧,经过很好的搜索,如果$string是所有的 CML 合并,你几乎没有机会找到坏关闭的标签。

我找到了一种方法,在 /lib/Varien/Simplexml/Config.php 类中,您必须修改下一个方法:

public function loadFile($filePath)
{
    if (!is_readable($filePath)) {
        //throw new Exception('Can not read xml file '.$filePath);
        return false;
    }

    $fileData = file_get_contents($filePath);
    $fileData = $this->processFileData($fileData);
    //add this try catch
    try{
        $this->loadString($fileData, $this->_elementClass);
    } catch (Exception $e) {
        var_dump("The error: " . $e->getMessage());
        var_dump("The bad file" . $filePath);
    }

    return $this->loadString($fileData, $this->_elementClass);
}

通过这种方式,我们现在可以看到哪个文件有一个错误的标签。

于 2013-11-01T06:51:54.020 回答
2

如果您的测试环境是 Linux,您还可以xmllint在对布局 xml 文件进行更改后使用 XMLLint 检查布局 xml 文件是否存在不一致。在实施之前进行检查会发现许多错误并防止引发错误。

于 2013-06-20T13:57:42.290 回答
2

编辑文件 app/code/core/Mage/Core/Model/Layout/Update.php 并搜索函数“getFileLayoutUpdatesXml”。

添加:

Mage::log(print_r($filename, true));

大约在第 442 行,之前:

$fileStr = file_get_contents($filename);
于 2014-03-11T21:35:34.153 回答
1

要解决这种情况,请在同一文件 */lib/Varien/Simplexml/Config.php 的第 489 行

加载的 XML 文件的打印路径放在Zend_Debug::dump($filePath);后面$fileData = $this->processFileData($fileData);

并覆盖函数 loadString($string)


if (is_string($string)) {
    $xml = simplexml_load_string($string, $this->_elementClass);
    if ($xml instanceof Varien_Simplexml_Element) {
        $this->_xml = $xml;
        return true;
    }
} else {
    Mage::logException(new Exception('"$string" parameter for simplexml_load_string is not a string'));
}
return false;

用。。。来代替

if (is_string($string)) {
    // Enable internal errors
    //Mage::log($string);
    libxml_use_internal_errors(true);
    $xml = simplexml_load_string($string, $this->_elementClass);

    if (false === $xml) {
        // Put breakpoint here
        $errors = libxml_get_errors();
        $err = array($errors);
        // error detail and file name will be printed
        Zend_Debug::dump($string);;
        Zend_Debug::dump($err);
        die();
    }
    if ($xml instanceof Varien_Simplexml_Element) {
        $this->_xml = $xml;
        return true;
    }
} else {
    Mage::logException(new Exception('"$string" parameter for simplexml_load_string is not a string'));
}
return false;

这将打印产生问题的路径和错误。

于 2016-04-28T04:19:20.383 回答
0

*/lib/Varien/Simplexml/Config.php on line 510

去添加一个调试行并回显它尝试加载的xml,看看这个字符串有什么问题。

于 2012-10-31T07:13:48.920 回答