我在安装 Magento 时遇到问题,希望有人可以帮助我。
当我访问该站点时,我突然开始收到以下错误消息:
Fatal error: Class name must be a valid object or a string in /app/code/core/Mage/Core/Model/Resource.php on line 215
this 所指的功能是:
/**
* Get connection type instance
*
* Creates new if doesn't exist
*
* @param string $type
* @return Mage_Core_Model_Resource_Type_Abstract
*/
public function getConnectionTypeInstance($type)
{
if (!isset($this->_connectionTypes[$type])) {
$config = Mage::getConfig()->getResourceTypeConfig($type);
$typeClass = $config->getClassName();
$this->_connectionTypes[$type] = new $typeClass();
}
return $this->_connectionTypes[$type];
}
这是第 215 行:
$this->_connectionTypes[$type] = new $typeClass();
我一直在寻找有类似问题但没有任何运气的人,所以我被卡住了,真的需要解决这个问题
任何人都可以帮忙吗?