Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
N/A
-
Resolution: Not an Issue
-
Affects Version/s: 1.10.1
-
Fix Version/s: 1.10.2
-
Component/s: Zend_Application_Resource
-
Labels:None
Description
In one of my projects I got a weird memory error using ZF. It ran out of memory when loading the Resource_Frontcontroller by about 500MB.
The solution was to rename the Zend_Application_Resource_Frontcontroller to Zend_Application_Resource_FrontController (including classname and filename).
When I searched the rest of ZF, I found that there was nowhere something like Frontcontroller. Except for some tests. While the resource FrontController was used all over the Application module.
Actually, we should be using all lowercase for the key names. The class is called Zend_Application_Resource_Frontcontroller, and the all lowercase naming is due to design decisions made to make matching of resource classes easier.