Anyknowledge - anyknowledge.com - Website for Any Knowledge
General Information:
Latest News:
Java :: Learning Notes [Part - 1] 21 May 2013 | 12:28 am
When you design a class, think about the objects that will be created from that class type. The most important things to think about are:- Things the object knows (State) They are called the Instance/...
Magento – All about Pre-Dispath and Post-Dispatch Dynamic Events 27 Jul 2012 | 06:54 pm
Whenever any Controller method / action is executed by Magento as per the User Request, then a particular common event related to that method name will always get fired. What happens internally is des...
Magento – Checklist when Magento is Upgraded 16 Apr 2012 | 05:27 am
Here I will list some of the common points when upgrading Magento, along with the old data. So let’s start. I’m assuming that the source & target web servers are different, because this situation is m...
Useful Articles and Websites 3 Apr 2012 | 03:34 am
Following are some of my favorite & useful articles and websites:- Alan Storm – Magento Articles Alan Storm – Magento Quickies Alessandro Nadalin – How to argue with Junior and Stubborn Developers BBC...
Magento – Using Limit in Model Collection 30 Mar 2012 | 02:51 am
The Magento ORM uses a paging style interface to limit results. The collection is notified about how many records you want in each page (“setPageSize()“), then it can be notified about the current pag...
Magento – Reindexing using Command Line 17 Mar 2012 | 10:17 pm
The number of Index processes available for each Magento differs from one edition to another. There are many times when the Store Owner or any developer finds that one / more index processes in the In...
Magento – Get Original Image URL of a Product 17 Mar 2012 | 10:11 pm
Today’s article is related to getting the original Image URL of a particular Product. $productId = 'SOME_PRODUCT_ID'; $product = Mage::getModel('catalog/product')->load($productId); $productMediaConfi...
Protected: Magento – All about Shipping Tax for Developers 3 Mar 2012 | 07:31 am
There is no excerpt because this is a protected post.
PHP & MySQL Settings for Comfortable Working Environment in WAMP 27 Feb 2012 | 07:33 am
When working in WAMP, you may like to change the PHP & MySQL settings, so that you don’t get into frequent troubles in the Development environment. The most difficult task is to know which “php.ini” f...
PHP – Autoloading Feature 22 Feb 2012 | 08:00 am
Whenever any object is to be created / instantiated, we require the class definitions. And obviously, each class definition is normally found in each single PHP file, which means that we will have to ...