autoloader

Use Zend_Autoloader for Models.

Hi, does someone knows how to use the "new" Zend Autoloader to Load Models ? In the Moment my Configuration looks like this : application.ini # Autoloader Namespace autoloadernamespaces.0 = "Sl_" Bootstrap.php /** * Start Autoloader * * @access protected * @return Zend_Application_Module_Autoloader */ ...

How to upgrade Zend_Loader from 1.7 to 1.8?

I have been using this, and it works fine in 1.7, but not in 1.8. require_once('Zend/Loader.php'); Zend_Loader::registerAutoload(); It says it's deprecated, and that I should use Zend_Loader_Autoloader instead, but I can't seem to get it to work. Any suggestions? ...

Zend not autoloading models

Ok, this is driving me nuts! I have a directory structure as follows: application - modules -- default --- controllers --- models ---- DbTable ---- Cachmapper.php --- views My config file looks like this [production] phpSettings.display_startup_errors = 0 phpSettings.display_errors = 0 includePaths.library = APPLICATION_PATH "/../li...

Reduce number of included files

Hello, My application based on Zend Framework and Doctrine includes > 300 files on each request. They are mostly the same files. This is a quite huge overhead. Partially solved by Zend_Cache (and Memcache), but not all the pages may be cached. How to reduce this number? How to speed up? Doctrine has an option to compile the needed ...