phpvms/public/index.php

46 lines
1.2 KiB
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
/**
2020-09-03 06:47:38 +08:00
* phpVMS Entry Point
* https://phpvms.net
* https://docs.phpvms.net
*/
/**
2020-09-03 06:47:38 +08:00
* NOTE!!
*
2020-03-02 23:50:39 +08:00
* If you move the public folder, or all the files in the public folder,
* be sure to change this to point to the right place. View these docs:
*
2020-09-03 06:47:38 +08:00
* https://docs.phpvms.net/installation/uploading
2017-06-09 02:28:26 +08:00
*/
2017-12-16 09:31:32 +08:00
$path_to_phpvms_folder = __DIR__.'/../';
2020-09-03 06:47:38 +08:00
if (file_exists($path_to_phpvms_folder.'bootstrap/autoload.php')) {
require $path_to_phpvms_folder.'bootstrap/autoload.php';
$app = require_once $path_to_phpvms_folder.'bootstrap/app.php';
}
// Look up one more folder up (outside of the Laravel root) and in the `phpvms` subfolder
2020-09-03 06:52:52 +08:00
elseif (file_exists($path_to_phpvms_folder.'phpvms/bootstrap/autoload.php')) {
require $path_to_phpvms_folder.'phpvms/bootstrap/autoload.php';
$app = require_once $path_to_phpvms_folder.'phpvms/bootstrap/app.php';
2020-09-03 06:47:38 +08:00
}
// Bail out
else {
echo 'Cannot find path to bootstrap/autoload.php. Modify this file to the proper path';
exit();
}
2017-06-09 02:28:26 +08:00
$app->setPublicPath(__DIR__);
2017-06-09 02:28:26 +08:00
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);