For use after an upgrade to verify the correct working of Magento
- Activate all logs on the server (PHP, MySQL, Magento, mail, etc)
- Check meta tags in HTML
http://www.magestore.com/blog/2012/09/07/magento-certificate-total-models/
Get Ready for Magento Certified Developer Exam. Magento Codepool http://blog.belvg.com/magento-certification-magento-codepool.html
Get Ready for Magento Certified Developer Exam. Magento Module Structure. http://blog.belvg.com/magento-certification-module-structure.html
Get Ready for Magento Certified Developer Exam. The Main Magento Design Areas and More…
| $originalCollection = Mage::getModel('catalog/product') | |
| ->getCollection(); | |
| $newCollection = Mage::getModel('catalog/product') | |
| ->getCollection(); | |
| $selectParts = array( | |
| Varien_Db_Select::DISTINCT, | |
| Varien_Db_Select::COLUMNS, | |
| Varien_Db_Select::UNION, |
| <?php | |
| /** | |
| * A simple fix for a shell execution on preg_match('/[0-9]\.[0-9]+\.[0-9]+/', shell_exec('mysql -V'), $version); | |
| * The only edit that was done is that shell_exec('mysql -V') was changed to mysql_get_server_info() because not all | |
| * systems have shell access. XAMPP, WAMP, or any Windows system might not have this type of access. mysql_get_server_info() | |
| * is easier to use because it pulls the MySQL version from phpinfo() and is compatible with all Operating Systems. | |
| * @link http://www.magentocommerce.com/knowledge-base/entry/how-do-i-know-if-my-server-is-compatible-with-magento | |
| * @author Magento Inc. | |
| */ |