gpt4 book ai didi

php - 编辑客户帐户时出现 Magento fatal error

转载 作者:行者123 更新时间:2023-11-29 01:29:44 24 4
gpt4 key购买 nike

我有 Magento 1.7.0.2,当我尝试在管理面板中编辑客户帐户时,出现此错误: fatal error :在第 77 行的/home/techspec/public_html/magento/includes/src/Mage_Adminhtml_Block_Customer_Edit_Tab_Account.php 中的非对象上调用成员函数 setRenderer()

 $attributes = $customerForm->getAttributes();
foreach ($attributes as $attribute) {
/* @var $attribute Mage_Eav_Model_Entity_Attribute */
$attribute->setFrontendLabel(Mage::helper('customer')->__($attribute->getFrontend()->getLabel()));
$attribute->unsIsVisible();
}

$disableAutoGroupChangeAttributeName = 'disable_auto_group_change';
$this->_setFieldset($attributes, $fieldset, array($disableAutoGroupChangeAttributeName));

$form->getElement('group_id')->setRenderer($this->getLayout()
->createBlock('adminhtml/customer_edit_renderer_attribute_group')
->setDisableAutoGroupChangeAttribute($customerForm->getAttribute($disableAutoGroupChangeAttributeName))
->setDisableAutoGroupChangeAttributeValue($customer->getData($disableAutoGroupChangeAttributeName)));

if ($customer->getId()) {
$form->getElement('website_id')->setDisabled('disabled');
$form->getElement('created_in')->setDisabled('disabled');
} else {
$fieldset->removeField('created_in');
$form->getElement('website_id')->addClass('validate-website-has-store');

即引用文件的第 67 到 87 行。会喜欢任何帮助。谢谢。

最佳答案

看起来属性 group_id 不在您的可编辑属性列表中。确保属性可见。使用此选择进行检查。

SELECT * FROM `eav_attribute` e 
LEFT JOIN `customer_eav_attribute` ce ON e.attribute_id = ce.attribute_id
WHERE e.attribute_code = 'group_id'

查看字段 is_visible 的值。

如果您没有从上面的查询中得到任何结果,那么您就有麻烦了。

如果为 1,则可能该属性未设置为在管理表单中显示。获取上一个查询返回的 attribute_id 并执行此操作。假设值为 10

select * from customer_form_attribute where attribute_id = 10;

如果没有form_code = adminhtml_customer 的记录,那么您应该添加它。

关于php - 编辑客户帐户时出现 Magento fatal error ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19800808/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com