From 0a040311de456b04d5a1d8a0aa28ea2a1cdb4582 Mon Sep 17 00:00:00 2001 From: Thomas Steur Date: Tue, 4 Feb 2014 23:41:13 +0100 Subject: make sure to display a message at least PHP5.3 is needed if PHP version is too old --- core/dispatch.php | 32 ++++++++++++++++++++++++++++++++ index.php | 26 +++----------------------- 2 files changed, 35 insertions(+), 23 deletions(-) create mode 100644 core/dispatch.php diff --git a/core/dispatch.php b/core/dispatch.php new file mode 100644 index 0000000000..42e5a950f7 --- /dev/null +++ b/core/dispatch.php @@ -0,0 +1,32 @@ +init(); + $response = $controller->dispatch(); + + if (!is_null($response)) { + echo $response; + } +} 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'; -- cgit v1.2.3