“Geçersiz blok türü ..” hatası nasıl teşhis edilir?


19

Bu hatayı nasıl bulacağımdan emin değilim, bir haftadır çalışıyorum ve bir çözüm bulamıyorum. Herhangi bir fikir?

2013-06-10T04:04:28+00:00 ERR (3): 
exception 'Mage_Core_Exception' with message 'Invalid block type: ' in /home/xxxxxxx/public_html/app/Mage.php:594
Stack trace:
#0 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/Layout.php(495): Mage::throwException('Invalid block t...')
#1 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/Layout.php(437): Mage_Core_Model_Layout->_getBlockInstance('', Array)
#2 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/Layout.php(472): Mage_Core_Model_Layout->createBlock('', 'checkout.cart')
#3 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/Layout.php(239): Mage_Core_Model_Layout->addBlock('', 'checkout.cart')
#4 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/Layout.php(205): Mage_Core_Model_Layout->_generateBlock(Object(Mage_Core_Model_Layout_Element), Object(Mage_Core_Model_Layout_Element))
#5 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/Layout.php(210): Mage_Core_Model_Layout->generateBlocks(Object(Mage_Core_Model_Layout_Element))
#6 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Controller/Varien/Action.php(344): Mage_Core_Model_Layout->generateBlocks()
#7 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Controller/Varien/Action.php(269): Mage_Core_Controller_Varien_Action->generateLayoutBlocks()
#8 /home/xxxxxxx/public_html/app/code/core/Mage/Checkout/controllers/CartController.php(159): Mage_Core_Controller_Varien_Action->loadLayout()
#9 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Controller/Varien/Action.php(419): Mage_Checkout_CartController->indexAction()
#10 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Controller/Varien/Router/Standard.php(250): Mage_Core_Controller_Varien_Action->dispatch('index')
#11 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Controller/Varien/Front.php(176): Mage_Core_Controller_Varien_Router_Standard->match(Object(Mage_Core_Controller_Request_Http))
#12 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/App.php(354): Mage_Core_Controller_Varien_Front->dispatch()
#13 /home/xxxxxxx/public_html/app/Mage.php(683): Mage_Core_Model_App->run(Array)
#14 /home/xxxxxxx/public_html/index.php(89): Mage::run('', 'store')
#15 {main}

Yanıtlar:


20

Gönderdiğiniz yığın izlemesine bağlı olarak, Magento mizanpaj güncellemesi xml dosyalarını yüklerken ve sayfanın HTML'sini oluşturacak blokları oluşturmak için bunları kullanıyor gibi görünüyor.

Bu çizgiler sorun gibi görünüyor

#1 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/Layout.php(437): Mage_Core_Model_Layout->_getBlockInstance('', Array)
#2 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/Layout.php(472): Mage_Core_Model_Layout->createBlock('', 'checkout.cart')
#3 /home/xxxxxxx/public_html/app/code/core/Mage/Core/Model/Layout.php(239): Mage_Core_Model_Layout->addBlock('', 'checkout.cart')

addBlock, createBlockVe _getBlockInstanceyöntemleri tüm ilk parametre bloğu için bir sınıf takma dize olmasını bekliyoruz. Gibi bir şey checkout/cart. Ancak, sisteminizde bu dize eksik.

->addBlock('', 'checkout.cart')

Magento'nun bu kadar uzatılabileceğinden, bunun olmasının sayısız nedeni var. En yaygın neden, bir şekilde catalog.xmldosyanızın bu şekilde değiştirilmesidir.

<block type="checkout/cart" name="checkout.cart">

Eksik typeözelliği var. Böyle görünebilir

<block name="checkout.cart">

Veya bir yazım hatası olabilir

<block typeX="checkout/cart" name="checkout.cart">

Umarım yardımcı olur. Sorun başka bir şey olursa, geri dönüp doğru cevabı yayınladığınızdan emin olun.


5
büyük olasılıkla <block name="checkout.cart">bunun yerine bir şeydir <reference name="checkout.cart">. Bunu internette (ücretsiz veya ücretli) birkaç temada gördüm. layoutTemanın klasöründe yapılan basit bir arama bu teoriyi doğrulamalı (veya reddetmeli).
Marius

2
Doğru, bir referenceetiket o çağrı yığınına neden olmaz - createBlockçağrılıyor, yani bir blocketiket.
Alan Storm

3

Orijinal yazımdaki yorumların yardımıyla, rahatsız edici kodu izleyebildim!

İstisnaya neden olan snippet:

<checkout_cart_index>
    <reference name="content">
        <block name="checkout.cart">            
            <!-- Add CMS Static Block -->
            <block type="cms/block" name="snippet.cart.bottom" as="snippet_cart_bottom">
                <action method="setBlockId"><block_id>snippet_cart_bottom</block_id></action>
            </block>

            <!-- Add CMS Static Block -->
            <block type="cms/block" name="snippet.cart.coupon.below" as="snippet_cart_coupon_below">
                <action method="setBlockId"><block_id>snippet_cart_coupon_below</block_id></action>
            </block>

            <!-- Add CMS Static Block -->
            <block type="cms/block" name="snippet.cart.empty.bottom" as="snippet_cart_empty_bottom">
                <action method="setBlockId"><block_id>snippet_cart_empty_bottom</block_id></action>
            </block>

            <!-- Add CMS Static Block -->
            <block type="cms/block" name="snippet.cart.list.below" as="snippet_cart_list_below">
                <action method="setBlockId"><block_id>snippet_cart_list_below</block_id></action>
            </block>
        </block>
    </reference>
</checkout_cart_index>

Düzeltilmiş kod artık istisnalara neden olmuyor:

<checkout_cart_index>
    <reference name="checkout.cart">        
            <!-- Add CMS Static Block -->
            <block type="cms/block" name="snippet.cart.bottom" as="snippet_cart_bottom">
                <action method="setBlockId"><block_id>snippet_cart_bottom</block_id></action>
            </block>

            <!-- Add CMS Static Block -->
            <block type="cms/block" name="snippet.cart.coupon.below" as="snippet_cart_coupon_below">
                <action method="setBlockId"><block_id>snippet_cart_coupon_below</block_id></action>
            </block>

            <!-- Add CMS Static Block -->
            <block type="cms/block" name="snippet.cart.empty.bottom" as="snippet_cart_empty_bottom">
                <action method="setBlockId"><block_id>snippet_cart_empty_bottom</block_id></action>
            </block>

            <!-- Add CMS Static Block -->
            <block type="cms/block" name="snippet.cart.list.below" as="snippet_cart_list_below">
                <action method="setBlockId"><block_id>snippet_cart_list_below</block_id></action>
            </block>            
    </reference>
</checkout_cart_index>

0

Sorunlarımı sadece düz eski blokları kaldırarak çözmeyi başardım. Bunu şu şekilde yaptım:

Mage::log($className . ' - ' $blockName, null, 'logfile.log');/App/code/core/Mage/Core/Model/Layout.php içindeki '_generateBlock' işlevine satır ekleme

Şöyle ki:

$block = $this->addBlock($className, $blockName);
if (!$block) {
    Mage::log($className . ' - ' $blockName, null, 'logfile.log');
    return $this;
}

Sonra tema / düzen içinde local.xml dosyama aşağıdaki satırı ekleyerek blokları kaldırdım

<remove name="fb8cd356f514800e782dfca09d40465d"/>
<remove name="1f0592cf88e12e898c194d5d18250c51"/>
<remove name="downloads.product"/>

Umarım bu birine yardımcı olur. Benim istisnalar.log dosyamda yazılmış tüm bok dayanamadı.

GÜNCELLEME:

Bu kodu kullanarak hemen önce 'dönüş $ bu' /app/code/core/Mage/Core/Model/Layout.php _generateBlock işlevinde bulduk

if ($_SERVER['HTTP_X_FORWARDED_FOR'] == '00.00.00.00') {
    Mage::log(Zend_Debug::dump($parentBlock, null, false), null, 'export_all_xml.log');
}

açıkça ihtiyacınız varsa 'HTTP_X_FORWARDED_FOR' değerini 'REMOTE_ADDR' olarak değiştirin.

GÜNCELLEME 2

Sitemle ilgili sorunu ekleyerek şunu buldum:

if ($_SERVER['HTTP_X_FORWARDED_FOR'] == '00.00.00.00') {
    Mage::setIsDeveloperMode(true);
}

'Mage :: throwException'ın hemen üstünde (Mage :: helper (' core ') -> __ (' Geçersiz blok türü:% s ', $ blok));' '/app/code/core/Mage/Core/Model/Layout.php' dosyasındaki '_getBlockInstance' işlevinde

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.