আপনি যদি সংকলকটি অক্ষম করে থাকেন এবং ক্যাশে সাফ করে থাকেন এবং তবুও আপনি ত্রুটিতে চলে যান
Class 'Mage_Install_Controller_Router_Install' not found
ফাইলটি app/code/core/Mage/Install/Controller/Router/Install.php
বিদ্যমান কিনা তা পরীক্ষা করে দেখুন ।
আপনি যখন প্যাচটি চালালেন তখন ডিরেক্টরিটি Router
উপস্থিত ছিল না app/code/core/Mage/Install/Controller
এবং তাই Install.php
ফাইলটিতে অন্যথায় বলা সত্ত্বেও applied.patches.list
ফাইলটি তৈরি হয় নি। এর অর্থ আপনি একটি ক্লাস মিস করছেন এবং আপনি বার্তাটি পেয়েছেন:
Fatal error: Class 'Mage_Install_Controller_Router_Install' not found
applied.patches.list
সম্ভবত সফল প্যাচ ইনস্টলেশনগুলির জন্য অংশ থেকে প্রাপ্ত অংশ যা ইনস্টল.এফপি ফাইল তৈরি করতে ব্যর্থ হয়:
patching file app/code/core/Mage/Install/Controller/Router/Install.php
patching file app/code/core/Mage/Install/etc/config.xml
প্যাচটি app/code/core/Mage/Install/etc/config.xml
ফাইলটিতে নিম্নলিখিত সংযোজন তৈরি করে যা অনুপস্থিত ফাইলের উল্লেখ করে:
<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>
অনুপস্থিত ফাইলটি app/code/core/Mage/Install/Controller/Router/Install.php
কী ধারণ করে তা নমুনা ।
<?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;
}
}