当出现问题时,我正在升级 magento,现在当我尝试登录管理员时,我无法登录到 magento 的后端管理员,并且出现以下错误
Fatal error: Call to undefined method Zend_XmlRpc_Value::getGenerator() in /home/boutique/public_html/app/code/core/Zend/XmlRpc/Request.php on line 413
并且各行的代码是
/**
* Create XML request
*
* @return string
*/
public function saveXml()
{
$args = $this->_getXmlRpcParams();
$method = $this->getMethod();
$generator = Zend_XmlRpc_Value::getGenerator();
$generator->openElement('methodCall')
->openElement('methodName', $method)
->closeElement('methodName');
我不明白为什么会发生这个问题,我尝试从新下载的 magento 中替换 request.php 和 response.php 文件。
身体可以帮助我吗?为什么会出现这个错误?