开启开发者模式

发布 : 2016-06-30 分类 : IT 浏览 :

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

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

  2. 修改index.php

1
2
3
4
5
6
if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
Mage::setIsDeveloperMode(true);
}
#ini_set('display_errors', 1);

改为

1
2
Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);
本文作者 : 小凡
原文链接 : https://16bh.github.io/2016/06/30/enable-magento-develop-model/
版权声明 : 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!
留下足迹