3bb896e752
+YUCHENG HU+ git-svn-id: https://svn.code.sf.net/p/hawebs/svn@418 a2543c7e-f6e9-4f8a-8bff-1ffc34733512
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Piwik - Open source web analytics
|
|
*
|
|
* @link http://piwik.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
|
|
* @version $Id: index.php 2121 2010-04-25 14:00:36Z vipsoft $
|
|
*
|
|
* @package Piwik
|
|
*/
|
|
|
|
if(file_exists('bootstrap.php'))
|
|
{
|
|
require_once 'bootstrap.php';
|
|
}
|
|
|
|
error_reporting(E_ALL|E_NOTICE);
|
|
if(!defined('PIWIK_DISPLAY_ERRORS') || PIWIK_DISPLAY_ERRORS)
|
|
{
|
|
@ini_set('display_errors', 1);
|
|
}
|
|
@ini_set('magic_quotes_runtime', 0);
|
|
|
|
define('PIWIK_DOCUMENT_ROOT', dirname(__FILE__)=='/'?'':dirname(__FILE__));
|
|
if(!defined('PIWIK_USER_PATH'))
|
|
{
|
|
define('PIWIK_USER_PATH', PIWIK_DOCUMENT_ROOT);
|
|
}
|
|
if(!defined('PIWIK_INCLUDE_PATH'))
|
|
{
|
|
define('PIWIK_INCLUDE_PATH', PIWIK_DOCUMENT_ROOT);
|
|
}
|
|
|
|
require_once PIWIK_INCLUDE_PATH . '/core/testMinimumPhpVersion.php';
|
|
|
|
// NOTE: the code above this comment must be PHP4 compatible
|
|
|
|
session_cache_limiter('nocache');
|
|
@date_default_timezone_set('UTC');
|
|
require_once PIWIK_INCLUDE_PATH .'/core/Loader.php';
|
|
|
|
if(!defined('PIWIK_ENABLE_SESSION_START') || PIWIK_ENABLE_SESSION_START)
|
|
{
|
|
Piwik_Session::start();
|
|
}
|
|
|
|
if(!defined('PIWIK_ENABLE_ERROR_HANDLER') || PIWIK_ENABLE_ERROR_HANDLER)
|
|
{
|
|
require_once PIWIK_INCLUDE_PATH .'/core/ErrorHandler.php';
|
|
require_once PIWIK_INCLUDE_PATH .'/core/ExceptionHandler.php';
|
|
set_error_handler('Piwik_ErrorHandler');
|
|
set_exception_handler('Piwik_ExceptionHandler');
|
|
}
|
|
|
|
if(!defined('PIWIK_ENABLE_DISPATCH') || PIWIK_ENABLE_DISPATCH)
|
|
{
|
|
$controller = Piwik_FrontController::getInstance();
|
|
$controller->init();
|
|
$controller->dispatch();
|
|
}
|