*/ @ini_set('display_errors', 'on'); // 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); } require __DIR__.'/bootstrap/autoload.php'; // check the runtime environment runtime_check(array( 'extensions' => array('pdo_mysql', 'openssl', 'gd') )); // handle the request require __DIR__.'/bootstrap/handler.php';