Magento:使用 APC 导致 SimpleXML PHP 错误
我想将 APC 与 Magento 一起使用。我在 app/etc/local.xml
中添加了以下代码:
<cache>
<backend>apc</backend>
<prefix>MAGE_</prefix>
</cache>
但出现以下错误。 APC 已在服务器上启用并与其他站点配合使用。
错误消息
警告:simplexml_load_file() [function.simplexml-加载文件]: 实体:第 58 行:解析器错误: 预期为“>”在 /var/www/html/webkul/magento/partner/app/Mage.php 第 645 行
警告:simplexml_load_file() [function.simplexml-加载文件]: 在 /var/www/html/webkul/magento/partner/app/Mage.php 第 645 行
警告:simplexml_load_file() [function.simplexml-load-file]: ^ 在 /var/www/html/webkul/magento/partner/app/Mage.php 第 645 行
注意:尝试获取以下财产 非对象在 /var/www/html/webkul/magento/partner/app/Mage.php 第 647 行
注意:尝试获取以下财产 非对象在 /var/www/html/webkul/magento/partner/app/Mage.php 第 647 行
注意:尝试获取以下财产 非对象在 /var/www/html/webkul/magento/partner/app/Mage.php 第 647 行
什么可能导致此错误?
I want to use APC with Magento. I added the folling code in app/etc/local.xml
:
<cache>
<backend>apc</backend>
<prefix>MAGE_</prefix>
</cache>
but I am getting the error below.
APC is already enabled on the server and working with other sites.
The error message
Warning: simplexml_load_file()
[function.simplexml-load-file]:
Entity: line 58: parser error :
expected '>' in
/var/www/html/webkul/magento/partner/app/Mage.php
on line 645Warning: simplexml_load_file()
[function.simplexml-load-file]:
in
/var/www/html/webkul/magento/partner/app/Mage.php
on line 645Warning: simplexml_load_file()
[function.simplexml-load-file]: ^ in
/var/www/html/webkul/magento/partner/app/Mage.php
on line 645Notice: Trying to get property of
non-object in
/var/www/html/webkul/magento/partner/app/Mage.php
on line 647Notice: Trying to get property of
non-object in
/var/www/html/webkul/magento/partner/app/Mage.php
on line 647Notice: Trying to get property of
non-object in
/var/www/html/webkul/magento/partner/app/Mage.php
on line 647
What could lead to this error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用 memcache 来提供后台缓存
magento 无法读取配置文件,请确保您的配置正确
顺便说一句:apc 不兼容 X64 操作系统
I'm use memcache to provider back cache
that magento can not read config file please makesure you config is correct
BTW:apc is not compatible X64 OS
确保您的 LAMP 堆栈满足所有要求:
http://www.magentocommerce.com/knowledge-base/entry/how-do-i-know-if-my-server-is-兼容-with-magento< /a>
特别是 SimpleXML。
Make sure your LAMP stack has all of the requirements being met:
http://www.magentocommerce.com/knowledge-base/entry/how-do-i-know-if-my-server-is-compatible-with-magento
Particularly SimpleXML.