I am currently working a project where I am setting up a new webshop, I am still relatively new but have had success in the past, this time, after transferring all files to the new FTP server and having the backend in good conditions for transfer, such as compiler off / caches disabled etc.
I get the following error immidiately upon saving something once I try to save my back-end, in system -> config :/
Fatal error: Class 'Mage_Catalog_Model_Convert_Adapter_Product' not found in /data/sportnor/public_html/multifitness.dk/app/code/core/Mage/Core/Model/Config.php on line 1350"
I thought I messed up the file transfer and broke some files in the process, so I did it over again.. with no success.
EDIT:
public function getModelInstance($modelClass='', $constructArguments=array())
{
$className = $this->getModelClassName($modelClass);
if (class_exists($className)) {
Varien_Profiler::start('CORE::create_object_of::'.$className);
$obj = new $className($constructArguments);
Varien_Profiler::stop('CORE::create_object_of::'.$className);
return $obj;
} else {
/* throw Mage::exception(
'Mage_Core',
Mage::helper('core')->__('Model class does not exist: %s.', $modelClass)
); */
return false;
}
}
public function getNodeClassInstance($path)
{
$config = Mage::getConfig()->getNode($path);
if (!$config) {
return false;
} else {
$className = $config->getClassName();
return new $className();
}
}
codesnippet taken from line 1345 to 1371 from config.php
Regards
Now I have a new problem though.. Theme is saved, enabled, cache is flushed etc. but nothing to see, the website is just blank.. : \
– Madvillain May 31 '15 at 08:48