Başarılı yamadan sonra hata SUPEE-5994: 'Mage_Install_Controller_Router_Install' sınıfı bulunamadı


36

SUPEE-5994 yamasını başarıyla kurdum:

[root@x]# sh PATCH_SUPEE-5994_EE_1.14.1.0_v1-2015-05-14-05-05-02.sh
Checking if patch can be applied/reverted successfully...
Patch was applied/reverted successfully.

Ama şimdi, tüm web sayfalarım boş.

Httpd hata günlüğü:

[error] [istemci x] PHP Önemli hata: /var/www/x/public_html/app/code/core/Mage/Core/Controller/Varien/Front.php satırında /var/www/x/public_html/app/code/core/Mage/Core/Controller/Varien/Front.php konumunda sınıf 'Mage_Install_Controller_Router_Install' bulunamadı

Denedim:

  • / Var / cache dosyasını temizle
  • Chmod / chown'u sıfırla
  • Httpd hizmetini yeniden başlatın

Ancak hiçbir şey işe yaramadı.

Aynı sorunu olan var mı?

EDIT: Front.php dosyası:

 Varien_Profiler::start('mage::app::init_front_controller::collect_routers');
    foreach ($routersInfo as $routerCode => $routerInfo) {
        if (isset($routerInfo['disabled']) && $routerInfo['disabled']) {
            continue;
        }
        if (isset($routerInfo['class'])) {
   // LINE 138 HERE
            $router = new $routerInfo['class'];
            if (isset($routerInfo['area'])) {
                $router->collectRoutes($routerInfo['area'], $routerCode);
            }
            $this->addRouter($routerCode, $router);
        }
    }
    Varien_Profiler::stop('mage::app::init_front_controller::collect_routers');

Yanıtlar:


38

Kapattınız ve derlemeyi temizlediniz mi?

Konsol / ssh ile kullanabilirsiniz

$ php -f shell/compiler.php -- disable

$ php -f shell/compiler.php -- clear

$ php -f shell/compiler.php -- compile

$ php -f shell/compiler.php -- enable

dördüncü çizgiye ihtiyaç duyabilir ... emin değil.

Gösterdiğiniz koddan önce gelen satırla ilgili bir sorun olabilir.

$routersInfo = Mage::app()->getStore()->getConfig(self::XML_STORE_ROUTERS_PATH);

Not: Yöneticinin boş olduğu yerde benzer bir problem yaşadım, ancak bu, çekirdek dosyalardan birini geçersiz kılan bir modülde bir dosya olarak ortaya çıktı - ancak bu sizin durumunuzda değil. Sadece başkalarının bu konuya bakması durumunda.


Vay canına, erkeksin! Çok teşekkürler. Sadece üçüncü satırı düzenleyin, php -f shell / compiler.php - benim için derle. İşe yarıyor !
Cqke

1
Güzel. Geçen hafta dostum siteleri güncellerken gerçekten sorun vardı dostum :)
Jon Holland

1
İyi nokta güncellendi.
Jon Holland

Olumlu oylar bunun için, Jon
David Wilkins

:) gerçekten biliyorum, David. İnsanların zor durumdan kurtulduğunu görmek güzel.
Jon Holland

14

Derleyiciyi devre dışı bıraktıysanız ve önbelleği temizlediyseniz ve hataya devam ettiyseniz

Class 'Mage_Install_Controller_Router_Install' not found

Dosyanın app/code/core/Mage/Install/Controller/Router/Install.phpvar olup olmadığını kontrol edin .

Düzeltme ekini çalıştırdığınızda, dizin içinde Routeryoktu app/code/core/Mage/Install/Controllerve bu yüzden Install.phpdosyada aksi belirtilmediği halde applied.patches.listdosya oluşturulmadı. Bu, bir dersi kaçırdığınız ve mesajı aldığınız anlamına gelir:

Fatal error: Class 'Mage_Install_Controller_Router_Install' not found

applied.patches.listInstall.php dosyasını oluşturamayan sözde başarılı düzeltme eki yüklemesi için alıntı :

patching file app/code/core/Mage/Install/Controller/Router/Install.php
patching file app/code/core/Mage/Install/etc/config.xml

Düzeltme eki app/code/core/Mage/Install/etc/config.xml, eksik dosyaya başvuran dosyaya aşağıdaki ekleri oluşturur :

 <default>
     <web>
         <routers>
             <install>
                 <area>frontend</area>
                 <class>Mage_Install_Controller_Router_Install</class>
             </install>
         </routers>
     </web>
 </default>
 <stores>
     <default>
         <web>
             <routers>
                 <install>
                     <area>frontend</area>
                     <class>Mage_Install_Controller_Router_Install</class>
                 </install>
             </routers>
         </web>
     </default>
 </stores>

Eksik dosyanın neyi app/code/core/Mage/Install/Controller/Router/Install.phpiçermesi gerektiğini gösteren örnek .

<?php
/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition End User License Agreement
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magento.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magento.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magento.com for more information.
 *
 * @category    Mage
 * @package     Mage_Install
 * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
 * @license http://www.magento.com/license/enterprise-edition
 */

class Mage_Install_Controller_Router_Install extends Mage_Core_Controller_Varien_Router_Standard
{
    /**
     * Check if current controller instance is allowed in current router.
     * 
     * @param Mage_Core_Controller_Varien_Action $controllerInstance
     * @return boolean
     */
    protected function _validateControllerInstance($controllerInstance)
    {
        return $controllerInstance instanceof Mage_Install_Controller_Action;
    }
}

1
İyi bir ek olarak Fiasco Labs, insanların bu sorunu yaşadığını duydum.
Jon Holland

1
Bizim durumumuzda olanları tam olarak anlatıyor ve yukarıda belirtilenler sorunu çözdü. Teşekkürler
Flipmedia
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.