Our blog

 

Magento 1.4 Fatal Error Stack Frame + Solution

If your shiny new Magento 1.4 is displaying this error message at the bottom of the page then you might want to apply this fix.

Fatal error: Exception thrown without a stack frame in Unknown on line 0

The solution is to comment out a small section of code in

app/code/core/Mage/Core/Model/Cache.php

line 180

PHP:
  1. /*try {
  2.                     if (class_exists($type, true)) {
  3.                         $implements = class_implements($type, true);
  4.                         if (in_array('Zend_Cache_Backend_Interface', $implements)) {
  5.                             $backendType = $type;
  6.                         }
  7.                     }
  8.                 } catch (Exception $e) {
  9.                 }*/

found the solution here:
http://www.magentocommerce.com/boards/viewthread/76782/

More Reading:

4 Comments

cristi
February 19th, 2010

thak you very much! finally a solution that actually worked!

 

Yogeshlt
February 20th, 2010

hey thanks dear you saved my life :)
thank you so much

 

mahendrasinh Radadiya
August 4th, 2010

i add the cache.php and comment few line of code but the problem is not solved

 

mithun
August 17th, 2010

Hey, i have not found the file u said Cache.php in the specified folder. I am using the magento 1.3.2

 

 

Leave a Reply