Zend Framework | naveenOS https://www.naveenos.com How may I help you - Magento Certified Developer Tue, 29 Nov 2011 11:51:50 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.2 What is Memcached? https://www.naveenos.com/2011/11/what-is-memcached https://www.naveenos.com/2011/11/what-is-memcached#respond Tue, 29 Nov 2011 11:50:52 +0000 http://naveenos.com/?p=440 Free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load. Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering. Memcached is simple yet […]

The post What is Memcached? first appeared on naveenOS.]]>
https://www.naveenos.com/2011/11/what-is-memcached/feed 0
Magento: How to debug error quickly https://www.naveenos.com/2011/11/magento-how-to-debug-error-quickly https://www.naveenos.com/2011/11/magento-how-to-debug-error-quickly#respond Thu, 24 Nov 2011 09:30:51 +0000 http://naveenos.com/?p=410 Magento provides log file to maintain each type of error on your application. By this you can add log error or exception to magento’s system log file. Its very handy to view coding errors. Developing for Magento is often hard, especially since it’s not always possibly to have error reporting on (and even when it […]

The post Magento: How to debug error quickly first appeared on naveenOS.]]>
https://www.naveenos.com/2011/11/magento-how-to-debug-error-quickly/feed 0
Zend: Join doesn’t work in my model https://www.naveenos.com/2011/11/zend-join-doesnt-work-in-my-model https://www.naveenos.com/2011/11/zend-join-doesnt-work-in-my-model#respond Thu, 10 Nov 2011 09:54:32 +0000 http://naveenos.com/?p=404 Zend provides JOIN, joinLeft, joinRight keywords to join two or multiple tables.  you can make an sql object by calling select function of current model by: $select = $this->getDbTable()->select(); Use below line to use JOIN terms in your SQL: $select->setIntegrityCheck(false); By default its integrity value set to True and it do not allow to use […]

The post Zend: Join doesn’t work in my model first appeared on naveenOS.]]>
https://www.naveenos.com/2011/11/zend-join-doesnt-work-in-my-model/feed 0
Zend: How to use multiple conditions at delete time? https://www.naveenos.com/2011/09/zend-how-to-use-multiple-conditions-at-delete-time https://www.naveenos.com/2011/09/zend-how-to-use-multiple-conditions-at-delete-time#respond Tue, 20 Sep 2011 14:14:29 +0000 http://naveenos.com/?p=394 Zend provides a facility to delete a row from the database table using the delete() method. This method takes one argument, which is an SQL expression that is used in a WHERE clause, as criteria for the rows to delete. For example : $modelObj = new ModelName(); $where = $modelObj >getAdapter()->quoteInto('id = ?', '1235'); $modelObj […]

The post Zend: How to use multiple conditions at delete time? first appeared on naveenOS.]]>
https://www.naveenos.com/2011/09/zend-how-to-use-multiple-conditions-at-delete-time/feed 0