【问题标题】:Magento site crashed after enable compilationMagento 网站在启用编译后崩溃
【发布时间】:2014-01-17 06:52:39
【问题描述】:

启用编译后我的 Magento 网站崩溃,我无法登录该网站,所以我试图从后端 (config.php) 禁用它,但它已禁用

define('COMPILER_INCLUDE_PATH', dirname(__FILE__).DIRECTORY_SEPARATOR.'src');
define('COMPILER_COLLECT_PATH', dirname(__FILE__).DIRECTORY_SEPARATOR.'stat');

有什么想法吗? 以下是错误代码

Warning: include_once(/home3/webcapt/public_html/campusclub/includes/src/Mage_Core_functions.php) [function.include-once]: failed to open stream: No such file or directory in /home3/webcapt/public_html/campusclub/app/Mage.php on line 36
Warning: include_once() [function.include]: Failed opening '/home3/webcapt/public_html/campusclub/includes/src/Mage_Core_functions.php' for inclusion (include_path='/home3/webcapt/public_html/campusclub/includes/src:.:/usr/lib/php') in /home3/webcapt/public_html/campusclub/app/Mage.php on line 36
Warning: include_once(/home3/webcapt/public_html/campusclub/includes/src/Varien_Autoload.php) [function.include-once]: failed to open stream: No such file or directory in /home3/webcapt/public_html/campusclub/app/Mage.php on line 37
Warning: include_once() [function.include]: Failed opening '/home3/webcapt/public_html/campusclub/includes/src/Varien_Autoload.php' for inclusion (include_path='/home3/webcapt/public_html/campusclub/includes/src:.:/usr/lib/php') in /home3/webcapt/public_html/campusclub/app/Mage.php on line 37
Fatal error: Class 'Varien_Autoload' not found in /home3/webcapt/public_html/campusclub/app/Mage.php on line 53

【问题讨论】:

标签: php mysql magento e-commerce web-deployment


【解决方案1】:

要通过代码禁用编译,只需从 magento 根文件夹重命名 includes 目录并尝试登录,希望这会对您有所帮助。

【讨论】:

    【解决方案2】:

    可能是缓存的问题。也重命名缓存文件夹后,它会显示相同的错误。您可以通过magento的index.php清除缓存

        $app = Mage::app();
    
    if ($app != null)
    
       {  
    
          $cache = $app->getCache();  
    
          if ($cache != null)  
    
            {      
    
               $cache->clean();  
    
             }
    
       }
    

    希望它会起作用!

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-08-22
      • 2017-04-09
      相关资源
      最近更新 更多