2010-07-01 23:48:07 +00:00
|
|
|
<?php
|
2010-12-09 07:08:59 +00:00
|
|
|
/**
|
2017-11-16 18:05:41 +00:00
|
|
|
* @file index.php
|
2011-11-12 12:21:14 +00:00
|
|
|
* Friendica
|
2010-12-09 07:08:59 +00:00
|
|
|
*/
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2018-12-30 20:42:56 +00:00
|
|
|
use Friendica\App;
|
2019-02-03 21:22:04 +00:00
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Factory;
|
|
|
|
use Friendica\Util\BasePath;
|
2018-12-30 20:42:56 +00:00
|
|
|
|
2019-01-18 19:10:05 +00:00
|
|
|
if (!file_exists(__DIR__ . '/vendor/autoload.php')) {
|
|
|
|
die('Vendor path not found. Please execute "bin/composer.phar --no-dev install" on the command line in the web root.');
|
|
|
|
}
|
|
|
|
|
2018-12-27 17:17:02 +00:00
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2019-02-05 21:27:57 +00:00
|
|
|
$basedir = BasePath::create(__DIR__, $_SERVER);
|
2019-02-03 21:22:04 +00:00
|
|
|
$configLoader = new Config\ConfigCacheLoader($basedir);
|
|
|
|
$config = Factory\ConfigFactory::createCache($configLoader);
|
|
|
|
$logger = Factory\LoggerFactory::create('index', $config);
|
2018-12-30 20:42:56 +00:00
|
|
|
|
2016-07-02 06:54:57 +00:00
|
|
|
// We assume that the index.php is called by a frontend process
|
2018-10-22 02:24:47 +00:00
|
|
|
// The value is set to "true" by default in App
|
2019-02-03 21:22:04 +00:00
|
|
|
$a = new App($config, $logger, false);
|
2016-07-02 06:54:57 +00:00
|
|
|
|
2018-10-22 02:24:47 +00:00
|
|
|
$a->runFrontend();
|