2016-01-21 19:03:39 +08:00
|
|
|
<?php
|
2016-08-28 10:05:21 +08:00
|
|
|
|
2016-01-21 19:03:39 +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-01-21 19:03:39 +08:00
|
|
|
*/
|
2016-02-10 15:20:13 +08:00
|
|
|
|
2016-11-21 22:04:10 +08:00
|
|
|
// runtime check
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!class_exists('PDO')) {
|
|
|
|
exit('[Error] You have not installed the PDO extension');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!function_exists('openssl_encrypt')) {
|
|
|
|
exit('[Error] You have not installed the OpenSSL extension');
|
|
|
|
}
|
|
|
|
|
2016-12-17 13:06:36 +08:00
|
|
|
// handle the request
|
|
|
|
require __DIR__.'/bootstrap/handler.php';
|