<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
    <title>Magento Issue Tracking</title>
    <link>http://www.magentocommerce.com/bug-tracking/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>MagentoCommerce</dc:creator>
    <dc:rights>Copyright {gmt_date format="%Y"}</dc:rights>
    <dc:date>{gmt_date format="%Y-%m-%dT%H:%i:%s%Q"}</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
        <item>
        <title>View Issue #20625 / Fatal error: Exception thrown without a stack fram</title>
        <link>http://www.magentocommerce.com/bug-tracking/issue?issue=8394</link>
        <description><![CDATA[<strong>Posted:</strong> 2010-02-15 15:39:39<br/><strong>Category:</strong> Installation<br/><strong>Version:</strong> 1.4.0.0<br/><strong>Priority:</strong> urgent<br/><strong>Status:</strong> closed<br/><strong>Reported By:</strong> <a href="http://www.magentocommerce.com/boards/member/111867/">ARO MEDIA</a></strong><br/><br/>This just happened after I did a clean install in a STAGING - sub-folder, this message appears both in the BACKEND and FRONTEND<br />
<br />
Fatal error: Exception thrown without a stack frame in Unknown on line 0<br/><br/><hr/>]]></description>
    </item>
    
                    <item>
        <title>RE: Fatal error: Exception thrown without a stack fram</title>
        <description><![CDATA[<em>#1 / Comment by <a href="http://www.magentocommerce.com/boards/member/257930/">modew</a></em><br/><br/>I have the exact same issue. <br />
<br />
I did some research and found another post here with similar issues: <br />
http://www.magentocommerce.com/boards/viewthread/76782/<br />
<br />
I did my own testing and found it to be caused by the code above (or looks like it is), which is in the method:<br />
<br />
protected function _getBackendOptions(array $cacheOptions); <br />
<br />
in the class:<br />
<br />
/app/code/core/Mage/Core/Model/Cache.php<br />
<br />
I found it only displays the error when the $type varibale from the above method is set to &quot;File&quot;, it seems the line:<br />
<br />
Line 182: if (class_exists($type, true)) , causes the error, - autloading issue??<br />
<br />
can we get any core devs to confirm or deny this?<br />
<br />
Many Thanks]]></description>
    </item>
            <item>
        <title>RE: Fatal error: Exception thrown without a stack fram</title>
        <description><![CDATA[<em>#2 / Comment by <a href="http://www.magentocommerce.com/boards/member/97616/">ZeusSOM</a></em><br/><br/>I second this.  What I can't figure out is how others aren't have the same problem.  There seem to be some database issues that it has caused as well.]]></description>
    </item>
            <item>
        <title>RE: Fatal error: Exception thrown without a stack fram</title>
        <description><![CDATA[<em>#3 / Comment by <a href="http://www.magentocommerce.com/boards/member/107/">Dmitriy</a></em><br/><br/>Hi<br />
<br />
Reason of this issue is pear lib in include_path - that why some installations are working good and some has this error.<br />
<br />
We will release fix ASAP.<br />
<br />
hot fix: you can replace<br />
                        if (class_exists($type, true)) {<br />
                            $implements = class_implements($type, true);<br />
                            if (in_array('Zend_Cache_Backend_Interface', $implements)) {<br />
                                $backendType = $type;<br />
                            }<br />
                        }<br />
lines in /app/code/core/Mage/Core/Model/Cache.php<br />
on<br />
                if ($type != $this-&gt;_defaultBackend) {<br />
                    try {<br />
                        if (class_exists($type, true)) {<br />
                            $implements = class_implements($type, true);<br />
                            if (in_array('Zend_Cache_Backend_Interface', $implements)) {<br />
                                $backendType = $type;<br />
                            }<br />
                        }<br />
                    } catch (Exception $e) {<br />
                    }<br />
                }]]></description>
    </item>
        </channel>
</rss>