humhub/index.php

34 lines
1.0 KiB
PHP
Raw Normal View History

2014-02-10 06:36:00 +01:00
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2017 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
2014-02-10 06:36:00 +01:00
*/
2015-07-01 05:09:57 +02:00
// comment out the following two lines when deployed to production
use humhub\helpers\DatabaseHelper;
2014-02-27 13:04:48 +01:00
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
2014-02-10 06:36:00 +01:00
require(__DIR__ . '/protected/vendor/autoload.php');
require(__DIR__ . '/protected/vendor/yiisoft/yii2/Yii.php');
2015-07-01 05:09:57 +02:00
$config = yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/protected/humhub/config/common.php'),
require(__DIR__ . '/protected/humhub/config/web.php'),
(is_readable(__DIR__ . '/protected/config/dynamic.php')) ? require(__DIR__ . '/protected/config/dynamic.php') : [],
require(__DIR__ . '/protected/config/common.php'),
2015-07-01 05:09:57 +02:00
require(__DIR__ . '/protected/config/web.php')
);
2014-02-10 06:36:00 +01:00
try {
(new humhub\components\Application($config))->run();
} catch (\Throwable $ex) {
if (null === DatabaseHelper::handleConnectionErrors($ex)) {
throw $ex;
}
}