Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-02-05 02:41:13 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-02-05 02:41:13 +0400
commit0a040311de456b04d5a1d8a0aa28ea2a1cdb4582 (patch)
tree5eb4c230c3d17f165bd2c493655cfc9d0d8fb87b /index.php
parentf50ee350f2efb1ac86ffc67b74f9ba6de5d581ac (diff)
make sure to display a message at least PHP5.3 is needed if PHP version is too old
Diffstat (limited to 'index.php')
-rw-r--r--index.php26
1 files changed, 3 insertions, 23 deletions
diff --git a/index.php b/index.php
index bde70bb7ba..e7eaf1a9fd 100644
--- a/index.php
+++ b/index.php
@@ -8,10 +8,6 @@
* @package Piwik
*/
-use Piwik\Error;
-use Piwik\ExceptionHandler;
-use Piwik\FrontController;
-
if(!defined('PIWIK_DOCUMENT_ROOT')) {
define('PIWIK_DOCUMENT_ROOT', dirname(__FILE__) == '/' ? '' : dirname(__FILE__));
}
@@ -31,11 +27,12 @@ if (!defined('PIWIK_INCLUDE_PATH')) {
define('PIWIK_INCLUDE_PATH', PIWIK_DOCUMENT_ROOT);
}
-require_once PIWIK_INCLUDE_PATH . '/libs/upgradephp/upgrade.php';
require_once PIWIK_INCLUDE_PATH . '/core/testMinimumPhpVersion.php';
// NOTE: the code above this comment must be PHP4 compatible
+require_once PIWIK_INCLUDE_PATH . '/libs/upgradephp/upgrade.php';
+
session_cache_limiter('nocache');
@date_default_timezone_set('UTC');
require_once file_exists(PIWIK_INCLUDE_PATH . '/vendor/autoload.php')
@@ -47,21 +44,4 @@ if(!defined('PIWIK_PRINT_ERROR_BACKTRACE')) {
define('PIWIK_PRINT_ERROR_BACKTRACE', false);
}
-if (!defined('PIWIK_ENABLE_ERROR_HANDLER') || PIWIK_ENABLE_ERROR_HANDLER) {
- require_once PIWIK_INCLUDE_PATH . '/core/Error.php';
- Error::setErrorHandler();
- require_once PIWIK_INCLUDE_PATH . '/core/ExceptionHandler.php';
- ExceptionHandler::setUp();
-}
-
-FrontController::setUpSafeMode();
-
-if (!defined('PIWIK_ENABLE_DISPATCH') || PIWIK_ENABLE_DISPATCH) {
- $controller = FrontController::getInstance();
- $controller->init();
- $response = $controller->dispatch();
-
- if (!is_null($response)) {
- echo $response;
- }
-}
+require_once PIWIK_INCLUDE_PATH . '/core/dispatch.php';