List/Grid Zend Framewrork Subscribe RSS feed of category Zend Framewrork
Zend Pagination example
Paginator component is available with Zend Framework v1.6. This component wasn’t available in v1.5. I appreciate Zend for provide such a nice component for pagination. This component, like other component,…
Zend Form Decorators
I’d felt a lot of pain when I first used Zend_Form. The reason was that I wasn’t able to layout form elements the way I wanted them to be. Zend…
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();…
