admin_index.php 809 B

1234567891011121314151617181920212223
  1. <?php
  2. // change the following paths if necessary
  3. $yii=dirname(__FILE__).'/../yii/framework/yii.php';
  4. $config=dirname(__FILE__).'/protected/config/main.php';
  5. // remove the following lines when in production mode
  6. defined('YII_DEBUG') or define('YII_DEBUG',false);
  7. // specify how many levels of call stack should be shown in each log message
  8. defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
  9. //初始化当前系统环境
  10. define('LWM_ENV', 'test');
  11. //这里是与智铺子业务相关的一些定义
  12. defined('LEWAIMAI_DEBUG') or define('LEWAIMAI_DEBUG', true);
  13. defined('LEWAIMAI_VERSION') or define('LEWAIMAI_VERSION', "1.0.0.0");
  14. $define=dirname(__FILE__).'/protected/include/define.php';
  15. require_once($define);
  16. require_once($yii);
  17. Yii::createWebApplication($config)->run();