Magento kurumsal 1.9.0.0 gelişmiş profil oluştururken Sorunu

0 Cevap php

Test conducted in Magento Enterprise version 1.9.0.0 First Problem When I try to create new profile under Advanced profile in admin and try to save it, I get following error:

Fatal error: Call to undefined method Mage_Adminhtml_Block_Widget::getrowurl() in D:\wamp\www\ent\app\code\core\Mage\Adminhtml\Block\Widget\Grid.php on line 1583

Ben koduna detaya ve çizgi uygulaması \ code \ core \ Mage \ Adminhtml \ Blok \ Widget \ Grid.php hiçbir ulaşmaya başladı. 1583, ben kod aşağıdaki yığın (yeşil renkli) bulduk:

class Mage_Adminhtml_Block_Widget_Grid extends Mage_Adminhtml_Block_Widget {

    public function getRowUrl($item)
    {
        $res = parent::getRowUrl($item);
        return ($res ? $res : '#');
    }
}

Eğer kodda $res = parent::getRowUrl($item); görürseniz, o Mage_Adminhtml_Block_Widget, yani kendi ana sınıfından getRowUrl() işlevi çalıştırmak için talimat. Ben Widget sınıfta getRowUrl arama fonksiyonu Şimdi zaman, o bile değil Mage_Adminhtml_Block_Widget bir üst sınıf, orada mevcut değildir.

Ben de getRowUrl () işlevi yazılı kod yorumlama tarafından ayıklamak için çalıştı, ama çalışmıyor.

Second problem: When I run normal profile to import all product, I see following error

Fatal error: Call to undefined method Mage_Adminhtml_Block_Abstract::getexceptions() in D:\wamp\www\ent\app\code\core\Mage\Adminhtml\Block\System\Convert\Profile\Run.php on line 166

All I uzantıları kurmadan taze kurumsal sürüm 1.9.0.0 bu test.

0 Cevap