Magento - zend - 后端错误
当我登录到 magento 后端时出现以下错误
Fatal error: Interface 'Zend_Http_Client_Adapter_Interface' not found in /homepages/45/d210005774/htdocs/websitename/lib/Varien/Http/Adapter/ Curl.php on line 176
另外,我之前在 magento 的索引管理部分中也遇到了此错误
Fatal error: Call to undefined method Zend_Locale_Data::disableCache() in /homepages/45/d210005774/htdocs/网站名称/lib/Zend/Locale/Format.php 第 153 行
有人能帮我解决这个问题吗?我认为问题与 zend 框架有关,但我不确定是什么原因造成的
I get the following error when i am logged into the backend in magento
Fatal error: Interface 'Zend_Http_Client_Adapter_Interface' not found in /homepages/45/d210005774/htdocs/websitename/lib/Varien/Http/Adapter/Curl.php on line 176
Also i got this error previously in my index management section in magento
Fatal error: Call to undefined method Zend_Locale_Data::disableCache() in
/homepages/45/d210005774/htdocs/websitename/lib/Zend/Locale/Format.php
on line 153
Could anyone help me out with this? I think the problem is to do with zend framework but i am not sure whats causing this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的安装似乎有问题。要么您丢失了 Magento 的 lib 文件夹中的文件,要么您的 Magento 的 lib 文件夹中的文件已损坏,或者(长远来看)您的 PHP 包含路径指向不同的位置。
我要做的第一件事是下载全新安装的 Magento 版本,将其解压缩到单独的文件夹中,然后运行
这将为您提供标准核心文件与您自己的核心文件之间的差异列表。
如果您想诊断特定文件,请检查
缺少的接口
并检查
缺少的方法
最后,检查 PHP 包含路径以确保不包含 Magento 和/或 Zend 的旧副本。
It looks like there's something wrong with your installation. Either you're missing files from Magento's lib folder, you have damaged files in Magento's lib folder, or (longshot) your PHP include path is pointing in a different location.
First thing I'd do is download a fresh install of your version of Magento, unzip it in a separate folder, and then run
This will give you a list of differences between the standard core files and your own.
If you want to diagnose specific files, check
for the missing interface
And check
for the missing method
Finally, check you PHP include path to ensure there isn't an older copy of Magento and/or Zend being included.
再次上传 Zend 文件夹。它对我有用。
Upload Zend folder again.it works for me.