Nie jestem pewien, jak rozwiązać ten problem, googlowałem od tygodnia i nie mogę znaleźć rozwiązania. Jakieś pomysły?
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}
źródło
<block name="checkout.cart">
zamiast<reference name="checkout.cart">
. Widziałem to w kilku tematach dostępnych w Internecie (za darmo lub za opłatą). Proste wyszukiwanie wlayout
folderze motywu powinno potwierdzić (lub odrzucić) tę teorię.reference
znacznik nie spowodowałby wywołania stosu wywołań -createBlock
jest wywoływany, co oznacza, że jest toblock
znacznik.Dzięki komentarzom z mojego oryginalnego posta udało mi się wyśledzić kod, który go narusza!
Oto fragment kodu, który spowodował wyjątek:
Zmieniony kod nie powoduje już wyjątków:
źródło
Udało mi się rozwiązać moje problemy, po prostu usuwając bloki. Zrobiłem to przez:
Dodanie wiersza
Mage::log($className . ' - ' $blockName, null, 'logfile.log');
do funkcji „_generateBlock” w /app/code/core/Mage/Core/Model/Layout.phpTak jak:
Następnie usunąłem bloki, dodając następujący wiersz do mojego pliku local.xml w moim kompozycji / układzie
Mam nadzieję, że to komuś pomoże. Nie mogłem znieść wszystkich bzdur zapisanych w moim pliku wyjątki.log.
AKTUALIZACJA:
Odkryłem, że użycie tego kodu tuż przed „return $ this” w funkcji _generateBlock w /app/code/core/Mage/Core/Model/Layout.php
w razie potrzeby zmień oczywiście „HTTP_X_FORWARDED_FOR” na „REMOTE_ADDR”.
AKTUALIZACJA 2
Znalazłem problem z moją witryną, dodając:
tuż nad „Mage :: throwException (Mage :: helper ('core') -> __ ('Nieprawidłowy typ bloku:% s', $ block)); ' w funkcji „_getBlockInstance” w pliku „/app/code/core/Mage/Core/Model/Layout.php”
źródło