24 lines
598 B
PHP
24 lines
598 B
PHP
<?php
|
|
//echo phpinfo();
|
|
//exit;
|
|
set_time_limit(45000);
|
|
/**
|
|
* @file index.php
|
|
*
|
|
* Copyright (c) 2014-2021 Simon Fraser University
|
|
* Copyright (c) 2003-2021 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* Bootstrap code for OJS site. Loads required files and then calls the
|
|
* dispatcher to delegate to the appropriate request handler.
|
|
*/
|
|
|
|
use APP\core\Application;
|
|
|
|
// Initialize global environment
|
|
define('INDEX_FILE_LOCATION', __FILE__);
|
|
require_once './lib/pkp/includes/bootstrap.php';
|
|
|
|
// Serve the request
|
|
Application::get()->execute();
|