Переопределение блока в админке

Sales/Orders

[16 июля 2019 г.]    Российская сборка Magento 2.52.2
Magento 2: модули и услуги
magereport.com: составление перечня необходимых для установки заплаток SUPEE
#1 Yuriy
  • Группа: Пользователь
  • Сообщений: 24
  • Регистрация: 11.11.2010

17.12.2010 19:09

Задача: нужно удалить несколько колонок из админки Sales / Orders.

Написал новый модуль. Вот его конфиг:
./app/etc/modules/Vellum_AdminFieldHide.xml
<?xml version="1.0"?>
<config>
<modules>
   <Vellum_AdminFieldHide>
      <active>true</active>
      <codePool>local</codePool>
      <version>1.0</version>
   </Vellum_AdminFieldHide>
</modules>
</config>


Переопределил блок следующим путем:
./app/code/local/Vellum/AdminFieldHide/etc/config.xml
<?xml version="1.0"?>
<config>
      <modules>
        <Vellum_AdminFieldHide>
          <version>0.1.0</version>
        </Vellum_AdminFieldHide>
      </modules>
    <frontend>
    </frontend>
   <global>   
      <blocks>   
	<sales>  
	    <rewrite>
		<order>Vellum_AdminFieldHide_Block_Order</order>
	    </rewrite>
	</sales>
      </blocks>   
   </global>   
</config> 


Собственно сам блок:
./app/code/local/Vellum/AdminFieldHide/Block/Sales/Order/Grid.php
<?php

class Vellum_AdminFieldHide_Block_Sales_Order_Grid extends Mage_Adminhtml_Block_Sales_Order_Grid
{
  public function __construct()
    {
        parent::__construct();
    }

    protected function _prepareColumns()
    {

        $this->addColumn('real_order_id', array(
            'header'=> Mage::helper('sales')->__('Order #'),
            'width' => '80px',
            'type'  => 'text',
            'index' => 'increment_id',
        ));

        if (!Mage::app()->isSingleStoreMode()) {
            $this->addColumn('store_id', array(
                'header'    => Mage::helper('sales')->__('Purchased From (Store)'),
                'index'     => 'store_id',
                'type'      => 'store',
                'store_view'=> true,
                'display_deleted' => true,
            ));
        }

        $this->addColumn('created_at', array(
            'header' => Mage::helper('sales')->__('Purchased On'),
            'index' => 'created_at',
            'type' => 'datetime',
            'width' => '100px',
        ));

        $this->addColumn('billing_name', array(
            'header' => Mage::helper('sales')->__('Bill to Name'),
            'index' => 'billing_name',
        ));

        $this->addColumn('shipping_name', array(
            'header' => Mage::helper('sales')->__('Ship to Name'),
            'index' => 'shipping_name',
        ));
/*
        $this->addColumn('base_grand_total', array(
            'header' => Mage::helper('sales')->__('G.T. (Base)'),
            'index' => 'base_grand_total',
            'type'  => 'currency',
            'currency' => 'base_currency_code',
        ));

        $this->addColumn('grand_total', array(
            'header' => Mage::helper('sales')->__('G.T. (Purchased)'),
            'index' => 'grand_total',
            'type'  => 'currency',
            'currency' => 'order_currency_code',
        ));
*/
        $this->addColumn('status', array(
            'header' => Mage::helper('sales')->__('Status'),
            'index' => 'status',
            'type'  => 'options',
            'width' => '70px',
            'options' => Mage::getSingleton('sales/order_config')->getStatuses(),
        ));

        if (Mage::getSingleton('admin/session')->isAllowed('sales/order/actions/view')) {
            $this->addColumn('action',
                array(
                    'header'    => Mage::helper('sales')->__('Action'),
                    'width'     => '50px',
                    'type'      => 'action',
                    'getter'     => 'getId',
                    'actions'   => array(
                        array(
                            'caption' => Mage::helper('sales')->__('View'),
                            'url'     => array('base'=>'*/sales_order/view'),
                            'field'   => 'order_id'
                        )
                    ),
                    'filter'    => false,
                    'sortable'  => false,
                    'index'     => 'stores',
                    'is_system' => true,
            ));
        }
        $this->addRssList('rss/order/new', Mage::helper('sales')->__('New Order RSS'));

        $this->addExportType('*/*/exportCsv', Mage::helper('sales')->__('CSV'));
        $this->addExportType('*/*/exportExcel', Mage::helper('sales')->__('Excel'));

        return parent::_prepareColumns();
    }
} 



Как я понял из документации, в блоке мне надо переопределить функцию _prepareColumns(), в которой и удалить ненужные поля (их я закомментировал).
Иду в админку www.misite.com/admin/sales_order/index/ и не вижу никаких изменений.
Подскажите мою ошибку. Чувствую, что в конфиге что-то не то. Может я не правильно переопределение для блока сделал?

Буду ОЧЕНЬ благодарен за помощь!!

#2 Дмитрий Федюк
  • Администратор
  • Иконка
  • Группа: Администратор
  • Сообщений: 8995
  • Регистрация: 20.02.2010

17.12.2010 19:40

Для начала убедитесь, что Magento вызывает ваш блок.
Добавите в конструктор блока
Mage::log (__METHOD__);
, например

#3 Yuriy
  • Группа: Пользователь
  • Сообщений: 24
  • Регистрация: 11.11.2010

20.12.2010 17:14

похоже, что блок не вызывается.

./var/log/system.log :
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:31+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:35+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:35+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:35+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:35+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:35+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:35+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:38+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:39+00:00 ERR (3): Strict Notice: Declaration of Amasty_Orderstatus_Model_Mysql4_Sales_Order::_beforeSave() should be compatible with that of Mage_Sales_Model_Mysql4_Order_Abstract::_beforeSave()  in /home/pproject/public_html/app/code/local/Amasty/Orderstatus/Model/Mysql4/Sales/Order.php on line 3
2010-12-20T14:11:40+00:00 ERR (3): Strict Notice: Declaration of Amasty_Orderstatus_Model_Mysql4_Sales_Order::_beforeSave() should be compatible with that of Mage_Sales_Model_Mysql4_Order_Abstract::_beforeSave()  in /home/pproject/public_html/app/code/local/Amasty/Orderstatus/Model/Mysql4/Sales/Order.php on line 3
2010-12-20T14:11:40+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:40+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:40+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:40+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:40+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:40+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:45+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:49+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:11:50+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:50+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:50+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:50+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:50+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:11:50+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:00+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:02+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:02+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:02+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:02+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:02+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:02+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:03+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:04+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:04+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:04+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:04+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:04+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:04+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:09+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:10+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:10+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:10+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:10+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:10+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:10+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:19+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:20+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:20+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:20+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:20+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:20+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:20+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:23+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:24+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:24+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:24+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:24+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:24+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:24+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 99: parser error : Comment not terminated 
&lt;!--&lt;block type=&quot;paypal/logo&quot; name=&quot;paypal.partner.rig  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                 &lt;!--action method=&quot;setLogoType&quot;&gt;&lt;value&gt;wePrefer_150x60&lt;/value&gt;&lt;/  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                   ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 100: parser error : Opening and ending tag mismatch: reference line 97 and block  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:             &lt;/block&gt;--&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 101: parser error : Opening and ending tag mismatch: catalog_product_view line 87 and reference  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:         &lt;/reference&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 102: parser error : Opening and ending tag mismatch: layout line 29 and catalog_product_view  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;/catalog_product_view&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:                            ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]: Entity: line 104: parser error : Extra content at the end of the document  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     &lt;catalog_category_default&gt;  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:28+00:00 ERR (3): Warning: simplexml_load_string() [<a href='function.simplexml-load-string'>function.simplexml-load-string</a>]:     ^  in /home/pproject/public_html/app/code/core/Mage/Core/Model/Layout/Update.php on line 431
2010-12-20T14:12:29+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:29+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:29+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:29+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:29+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10
2010-12-20T14:12:29+00:00 ERR (3): Notice: Undefined index: HTTPS  in /home/pproject/public_html/app/design/frontend/default/projector/template/wordpress/post/recent.phtml on line 10


логи перед заходом в админку я очистил

#4 Yuriy
  • Группа: Пользователь
  • Сообщений: 24
  • Регистрация: 11.11.2010

20.12.2010 17:28

больше в логи ничего не пишется

#5 Yuriy
  • Группа: Пользователь
  • Сообщений: 24
  • Регистрация: 11.11.2010

20.12.2010 17:33

проблема в etc/config.xml ?
не подскажите, в чем ошибка моя?

#6 Дмитрий Федюк
  • Администратор
  • Иконка
  • Группа: Администратор
  • Сообщений: 8995
  • Регистрация: 20.02.2010

20.12.2010 20:47

Вам же Magento уже указала на ошибки...
Их и исправьте в первую очередь.
Как запуск будут походить чисто - уже можно дальше отладку вести.

#7 Yuriy
  • Группа: Пользователь
  • Сообщений: 24
  • Регистрация: 11.11.2010

21.12.2010 12:08

Пошел другим путем. Удалил модуль и написал так, как вы советовали в другой теме и все работает замечательно! Спасибо!

Поделиться темой: