API
6 years ago
Access
6 years ago
Application
6 years ago
Archive
6 years ago
ArchiveProcessor
6 years ago
Archiver
6 years ago
AssetManager
6 years ago
Auth
6 years ago
Category
6 years ago
CliMulti
6 years ago
Columns
6 years ago
Composer
6 years ago
Concurrency
6 years ago
Config
6 years ago
Container
6 years ago
CronArchive
6 years ago
DataAccess
5 years ago
DataFiles
6 years ago
DataTable
6 years ago
Db
6 years ago
DeviceDetector
5 years ago
Email
6 years ago
Exception
6 years ago
Http
6 years ago
Intl
6 years ago
Mail
6 years ago
Measurable
6 years ago
Menu
6 years ago
Metrics
6 years ago
Notification
6 years ago
Period
6 years ago
Plugin
6 years ago
ProfessionalServices
6 years ago
Report
6 years ago
ReportRenderer
6 years ago
Scheduler
6 years ago
Segment
6 years ago
Session
6 years ago
Settings
6 years ago
Tracker
5 years ago
Translation
6 years ago
UpdateCheck
6 years ago
Updater
6 years ago
Updates
6 years ago
Validators
6 years ago
View
6 years ago
ViewDataTable
6 years ago
Visualization
6 years ago
Widget
6 years ago
.htaccess
6 years ago
Access.php
6 years ago
Archive.php
6 years ago
ArchiveProcessor.php
6 years ago
AssetManager.php
6 years ago
Auth.php
6 years ago
BaseFactory.php
6 years ago
Cache.php
6 years ago
CacheId.php
6 years ago
CliMulti.php
6 years ago
Common.php
6 years ago
Config.php
6 years ago
Console.php
6 years ago
Context.php
6 years ago
Cookie.php
5 years ago
CronArchive.php
5 years ago
DataArray.php
6 years ago
DataTable.php
6 years ago
Date.php
6 years ago
Db.php
6 years ago
DbHelper.php
6 years ago
Development.php
6 years ago
DeviceDetectorFactory.php
6 years ago
ErrorHandler.php
6 years ago
EventDispatcher.php
6 years ago
ExceptionHandler.php
6 years ago
FileIntegrity.php
6 years ago
Filechecks.php
6 years ago
Filesystem.php
6 years ago
FrontController.php
6 years ago
Http.php
6 years ago
IP.php
6 years ago
Log.php
6 years ago
LogDeleter.php
6 years ago
Mail.php
6 years ago
Metrics.php
6 years ago
MetricsFormatter.php
6 years ago
Nonce.php
5 years ago
Notification.php
6 years ago
NumberFormatter.php
6 years ago
Option.php
5 years ago
Period.php
6 years ago
Piwik.php
6 years ago
Plugin.php
6 years ago
Profiler.php
6 years ago
ProxyHeaders.php
6 years ago
ProxyHttp.php
6 years ago
QuickForm2.php
6 years ago
RankingQuery.php
6 years ago
Registry.php
6 years ago
ReportRenderer.php
6 years ago
ScheduledTask.php
6 years ago
Segment.php
6 years ago
Sequence.php
6 years ago
Session.php
6 years ago
SettingsPiwik.php
6 years ago
SettingsServer.php
6 years ago
Singleton.php
6 years ago
Site.php
6 years ago
TCPDF.php
6 years ago
TaskScheduler.php
6 years ago
Theme.php
6 years ago
Timer.php
6 years ago
Tracker.php
6 years ago
Translate.php
6 years ago
Twig.php
6 years ago
Unzip.php
6 years ago
UpdateCheck.php
6 years ago
Updater.php
6 years ago
Updates.php
6 years ago
Url.php
6 years ago
UrlHelper.php
6 years ago
Version.php
5 years ago
View.php
6 years ago
bootstrap.php
6 years ago
dispatch.php
6 years ago
testMinimumPhpVersion.php
6 years ago
bootstrap.php
63 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Piwik - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | * |
| 8 | * Bootstraps the Piwik application. |
| 9 | * |
| 10 | * This file cannot be a class because it needs to be compatible with PHP 4. |
| 11 | */ |
| 12 | |
| 13 | if (!defined('PIWIK_USER_PATH')) { |
| 14 | define('PIWIK_USER_PATH', PIWIK_DOCUMENT_ROOT); |
| 15 | } |
| 16 | |
| 17 | error_reporting(E_ALL | E_NOTICE); |
| 18 | @ini_set('display_errors', defined('PIWIK_DISPLAY_ERRORS') ? PIWIK_DISPLAY_ERRORS : @ini_get('display_errors')); |
| 19 | @ini_set('xdebug.show_exception_trace', 0); |
| 20 | |
| 21 | if (!defined('PIWIK_VENDOR_PATH')) { |
| 22 | if (is_dir(PIWIK_INCLUDE_PATH . '/vendor')) { |
| 23 | define('PIWIK_VENDOR_PATH', PIWIK_INCLUDE_PATH . '/vendor'); // Piwik is the main project |
| 24 | } else { |
| 25 | define('PIWIK_VENDOR_PATH', PIWIK_INCLUDE_PATH . '/../..'); // Piwik is installed as a Composer dependency |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | // NOTE: the code above must be PHP 4 compatible |
| 30 | require_once PIWIK_INCLUDE_PATH . '/core/testMinimumPhpVersion.php'; |
| 31 | |
| 32 | if (session_status() !== PHP_SESSION_ACTIVE && !headers_sent()) { |
| 33 | session_cache_limiter('nocache'); |
| 34 | } |
| 35 | |
| 36 | define('PIWIK_DEFAULT_TIMEZONE', @date_default_timezone_get()); |
| 37 | @date_default_timezone_set('UTC'); |
| 38 | |
| 39 | disableEaccelerator(); |
| 40 | |
| 41 | require_once PIWIK_INCLUDE_PATH . '/libs/upgradephp/upgrade.php'; |
| 42 | |
| 43 | // Composer autoloader |
| 44 | require_once PIWIK_VENDOR_PATH . '/autoload.php'; |
| 45 | |
| 46 | \Piwik\Plugin\Manager::initPluginDirectories(); |
| 47 | |
| 48 | /** |
| 49 | * Eaccelerator does not support closures and is known to be not comptabile with Piwik. Therefore we are disabling |
| 50 | * it automatically. At this point it looks like Eaccelerator is no longer under development and the bug has not |
| 51 | * been fixed within a year. |
| 52 | * |
| 53 | * @link https://github.com/piwik/piwik/issues/4439#comment:8 |
| 54 | * @link https://github.com/eaccelerator/eaccelerator/issues/12 |
| 55 | */ |
| 56 | function disableEaccelerator() |
| 57 | { |
| 58 | $isEacceleratorUsed = ini_get('eaccelerator.enable'); |
| 59 | if (!empty($isEacceleratorUsed)) { |
| 60 | @ini_set('eaccelerator.enable', 0); |
| 61 | } |
| 62 | } |
| 63 |