List/Grid Tag Archives: Zend Framework
Zend Framework and Dojo: configuration
Latest version of Zend framework- ZF 1.6.0 ship dojo toolkit. You can find it in ZendFramework-1.6.0/external/ directory when you download ZF. Recently I come across a problem using third party…
Zend Framework: Zend_Loader::Zend_Loader::registerAutoload is deprecated as of 1.8.0 and will be removed with 2.0.0; use Zend_Loader_Autoloader
While upgrading your version may cause the above warning. To get rid of it replace the following code require_once “Zend/Loader.php”; Zend_Loader::registerAutoload(); With the following one. require_once “Zend/Loader/Autoloader.php”; $autoloader = Zend_Loader_Autoloader::getInstance();…
