After installing "sphinx search ultimate", when I goto the config page and select the "sphinx search" panel, I get the following error:
Fatal error: Call to a member function toOptionArray() on a non-object in ../app/code/core/Mage/Adminhtml/Block/System/Config/Form.php on line 464
I've tried some of the tips mentioned on the site here, including ensuring compilation is off.. but no luck.
Can someone help? Have you ever seen this issue when installing a new extension? Ideas on how to troubleshoot?
Thanks.
2 Answers 2
Make sure that all the files are installed, and web server has enough privileges to actually load them. This could easily happens if install requires several steps. toOptionArray is a method from object that populates drop-down options. Referring to it as a non-object means that the object value is null, which usually happens when declaration file is either missing or not readable.
-
thanks. In the end, the extension makers sorted it out for me. Did seems to be a bad install or something.egg– egg2014年07月21日 17:49:59 +00:00Commented Jul 21, 2014 at 17:49
copy app\code\core\Mage\Adminhtml\Block\System\Config\Form.php
paste / extend to / create app\code\local\Mage\Adminhtml\Block\System\Config\Form.php
find the following on line 463
$optionArray = $sourceModel->toOptionArray($fieldType == 'multiselect');
and replace it with:
if(is_object($sourceModel)){
$optionArray = $sourceModel->toOptionArray($fieldType == 'multiselect');
} else {
Mage::log($e->source_model);
}
-
It's a bad practices to modifiy the core.Nolwennig– Nolwennig2016年01月19日 14:11:48 +00:00Commented Jan 19, 2016 at 14:11
-
Hi @Nolwennig just paste / extend to / create app\code\local\Mage\Adminhtml\Block\System\Config\Form.phpAndhi Irawan– Andhi Irawan2016年07月19日 04:10:40 +00:00Commented Jul 19, 2016 at 4:10
-
Helps to get the issue. Thanks for the trick.Gaurav Agrawal– Gaurav Agrawal2017年05月25日 06:20:59 +00:00Commented May 25, 2017 at 6:20