ZF-9235: The Resource_Frontcontroller should be Resource_FrontController
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.
Comments
Posted by Matthew Weier O'Phinney (matthew) on 2010-02-23T06:06:44.000+0000
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.
Posted by Martin Winkel (storeman) on 2010-02-23T06:28:37.000+0000
Thanks for your reply. I've looked further into this problem. I now see it's by design. When I changed it back, I still got the error.
When I changed something in the application.ini (no real changes), it suddenly worked.
I'm sorry for the inconvenience.
Posted by Dolf Schimmel (Freeaqingme) (freak) on 2010-02-23T11:49:39.000+0000
Closing for reasons described above.