Magento Team provides best solution for Magento eCommerce websites design and development.

26 November, 2013

Disable/hide PHP Notice errors

It can happens that Magento stops working dut to PHP Notice errors.
This is because developer mode has been activated and Notice will be outputted to the browser.



To disable it just comment these line on your index.php :
//if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
    //Mage::setIsDeveloperMode(true);
//}