Go to file
2018-06-28 18:25:31 +08:00
app Clear unnecessary filesystems 2018-06-28 18:25:31 +08:00
bootstrap Set UTF-8 encoding for error messages 2018-02-24 19:21:04 +08:00
config Clear unnecessary filesystems 2018-06-28 18:25:31 +08:00
database Bump version to v3.4.0 2018-02-24 21:52:45 +08:00
plugins Add an empty "plugins" directory 2018-06-28 13:31:43 +08:00
resources Add .env variables for customizing the path to load plugins from 2018-06-28 12:32:58 +08:00
routes Add tests for PlayerController 2017-11-14 23:25:04 +08:00
storage Add PHP 7.2 test in Travis CI 2018-02-24 21:29:23 +08:00
tests Clear unnecessary filesystems 2018-06-28 18:25:31 +08:00
.babelrc build: remove commonjs exports 2017-12-24 11:40:15 +08:00
.editorconfig Add .editorconfig 2018-02-16 15:39:55 +08:00
.env.example Add .env variables for customizing the path to load plugins from 2018-06-28 12:32:58 +08:00
.env.testing Use "memory" driver for testing 2017-11-17 17:46:06 +08:00
.eslintignore style(js): stricter eslint rules (#108) 2017-12-29 23:28:11 +08:00
.eslintrc.js feat: better DataTables AJAX error 2018-03-18 10:49:49 +08:00
.gitattributes initialize for laravel 2016-08-28 10:05:21 +08:00
.gitignore chore: update .gitignore 2018-03-18 09:48:30 +08:00
.htaccess Update .htaccess 2017-11-07 21:31:16 +08:00
.travis.yml Add PHP 7.2 test in Travis CI 2018-02-24 21:29:23 +08:00
artisan remove constant BASE_DIR 2016-11-21 21:50:24 +08:00
composer.json Add PHP 7.2 test in Travis CI 2018-02-24 21:29:23 +08:00
composer.lock Remove package fx3costa/laravelchartjs 2018-02-24 17:08:32 +08:00
gulpfile.js Update gulpfile.js 2018-02-24 20:08:57 +08:00
index.php Set UTF-8 encoding for error messages 2018-02-24 19:21:04 +08:00
ISSUE_TEMPLATE.md Move issue template to root directory 2018-02-14 12:29:12 +08:00
LICENSE change the License to GPL v3 2016-07-23 17:54:52 +08:00
package.json Bump version to v3.4.0 2018-02-24 21:52:45 +08:00
phpunit.xml Fix file indentation due to .editorconfig 2018-02-16 15:44:36 +08:00
README_EN.md Update copyright year to 2018 in README 2018-02-10 10:51:37 +08:00
README.md Update copyright year to 2018 in README 2018-02-10 10:51:37 +08:00
web.config Fix file indentation due to .editorconfig 2018-02-16 15:44:36 +08:00
yarn.lock Use laravelchartjs package to generate overview chart 2018-02-24 13:33:24 +08:00

Travis Building Status Codecov Latest Stable Version PHP 5.5.9+ License Twitter Follow

Are you puzzled by losing your custom skins in Minecraft servers runing in offline mode? Now you can easily get them back with the help of Blessing Skin!

Blessing Skin is a web application where you can upload, manage and share your custom skins & capes! Unlike modifying a resource pack, everyone in the game will see the different skins of each other (of course they should register at the same website too).

Blessing Skin is an open-source project written in PHP, which means you can deploy it freely on your own web server! Here is a live demo.

Features

  • A fully functional skin hosting service
  • Multiple player names can be owned by one user on the website
  • Share your skins and capes online with skin library!
  • Easy-to-use
    • Visual page for user/player/texture management
    • Detailed option pages
    • Many tweaks for a better UI/UX
  • Security
    • Support many secure password hash algorithms
    • Email verification for registration (available as plugin)
    • Score system for preventing evil requests
  • Incredibly extensible
    • Plenty of plugins available
    • Integration with Authme/CrazyLogin/Discuz
    • Support custom Yggdrasil API authentication

Requirements

Blessing Skin has only a few system requirements. In most cases, these PHP extensions are already enabled.

  • Web server with URL rewriting enabled
  • PHP >= 5.5.9 (use v2.x branch if your server doesn't meet the requirements)
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension
  • GD PHP Extension (for generating CAPTCHA)

If you are using PHP 7.2, you should also apply this patch after your installation. Just extract the vendor folder from the patch, cover the stock vendor with that and you are done.

Quick Install

  1. Download our latest release, extract to where you like to installed on.
  2. Rename .env.example to .env and configure your database information. (For windows users, just rename it to .env., and the last dot will be removed automatically)
  3. For Nginx users, add rewrite rules to your Nginx configuration
  4. Navigate to http://your-domain.com/setup in your browser. If 404 is returned, please check whether the rewrite rules works correctly.
  5. Follow the setup wizard and your website is ready-to-go.

Plugin System

Blessing Skin provides an elegant and powerful plugin system, and you can attach plenty of functions and customization to your site via installing plugins.

For more information, please refer to Wiki - Introducing plugin system.

Developer Install

If you'd like make some contribution on the project, please deploy it from git first.

You'd better have some experience on shell operations to continue.

Clone the code from GitHub and install dependencies:

$ git clone https://github.com/printempw/blessing-skin-server.git
$ composer install
$ yarn install

Run the tests (optional):

$ yarn test
$ ./vendor/bin/phpunit

Build the things!

$ yarn run build

Congrats! You made it. Next, please refer to No.2 of Quick Install section.

Configure the Web Server

For Apache (most of the virtual hosts) and IIS users, there is already a pre-configured file for you. What you need is just to enjoy!

For Nginx users, please add the following rules to your Nginx configuration file:

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

location ~ /\.env {
    deny all;
}

Mod Configuration

Please refer to Wiki - Mod Configuration.

screenshot

Report Problems

Read Wiki - FAQ and double check if your situation doesn't suit any case mentioned there before reporting.

When reporting a problem, please attach your log file (located at storage/logs/laravel.log) and the information of your server where the error occured on. You should also read this guide before reporting a problem.

Copyright 2016-2018 printempw and contributors.

Blessing Skin is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3.

Exception: Any plugin developed for Blessing Skin, is not required to adopt GPLv3 License nor release its source code, provided no source code from Blessing Skin is contained in the plugin.