blessing-skin-server/index.php

30 lines
775 B
PHP
Raw Normal View History

<?php
2016-08-28 10:05:21 +08:00
/**
2016-09-10 18:09:12 +08:00
* Entrance of Blessing Skin Server
2016-08-28 10:05:21 +08:00
*
2016-09-10 18:09:12 +08:00
* @package Blessing Skin Server
* @author printempw <h@prinzeugen.net>
*/
2016-02-10 15:20:13 +08:00
@ini_set('display_errors', 'on');
2017-08-05 14:15:26 +08:00
// Check PHP version
if (version_compare(PHP_VERSION, '5.5.9', '<')) {
exit(
'[Error] Blessing Skin Server needs PHP version >= 5.5.9, you are now using '.PHP_VERSION.'<br>'.
'[错误] 你的 PHP 版本过低('.PHP_VERSION.'Blessing Skin Server 要求至少为 5.5.9'
);
}
2016-12-17 19:52:22 +08:00
require __DIR__.'/bootstrap/autoload.php';
2016-11-21 22:04:10 +08:00
2017-08-05 14:15:26 +08:00
// Check the runtime environment
runtime_check(array(
'extensions' => array('pdo_mysql', 'openssl', 'gd', 'mbstring', 'tokenizer'),
2017-12-18 23:41:57 +08:00
'write_permission' => array('storage', 'plugins')
));
2016-11-21 22:04:10 +08:00
2017-08-05 14:15:26 +08:00
// Process the request
2017-08-05 13:40:42 +08:00
require __DIR__.'/bootstrap/kernel.php';