magento二次开发 - 开启开发者模式

开启了开发者模式后,可以直接在页面上显示错误信息

  1. 项目根目录/errors下的local.xml.sample 修改为local.xml

  2. 修改index.php


if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
    Mage::setIsDeveloperMode(true);
}

#ini_set('display_errors', 1);

改为

Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);

你可能感兴趣的:(magento二次开发 - 开启开发者模式)